summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-12-20 10:58:07 +0000
committerRichard van der Hoff <richard@matrix.org>2019-12-20 10:58:07 +0000
commit29794c6bc84b9ba76f041bbc8a180b7421996004 (patch)
treeccd51d4103fc3e032ac61d2d9e28310a435f3694
parentBackport fixes to sqlite upgrade from develop (#6578) (diff)
downloadsynapse-29794c6bc84b9ba76f041bbc8a180b7421996004.tar.xz
-rw-r--r--CHANGES.md12
-rw-r--r--changelog.d/6576.bugfix1
-rw-r--r--changelog.d/6578.bugfix1
-rw-r--r--debian/changelog6
-rw-r--r--synapse/__init__.py2
5 files changed, 19 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 7927714a36..d6567e24d2 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,15 @@
+Synapse 1.7.2 (2019-12-20)
+==========================
+
+This release fixes some regressions introduced in Synapse 1.7.0 and 1.7.1.
+
+Bugfixes
+--------
+
+- Fix a regression introduced in Synapse 1.7.1 which caused errors when attempting to backfill rooms over federation. ([\#6576](https://github.com/matrix-org/synapse/issues/6576))
+- Fix a bug introduced in Synapse 1.7.0 which caused an error on startup when upgrading from versions before 1.3.0. ([\#6578](https://github.com/matrix-org/synapse/issues/6578))
+
+
 Synapse 1.7.1 (2019-12-18)
 ==========================
 
diff --git a/changelog.d/6576.bugfix b/changelog.d/6576.bugfix
deleted file mode 100644
index f5414fce4d..0000000000
--- a/changelog.d/6576.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix errors when attempting to backfill rooms over federation.
diff --git a/changelog.d/6578.bugfix b/changelog.d/6578.bugfix
deleted file mode 100644
index fae55a4456..0000000000
--- a/changelog.d/6578.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix a bug introduced in Synapse 1.7.0 which caused an error on startup when upgrading from versions before 1.3.0.
diff --git a/debian/changelog b/debian/changelog
index e400619eb9..2492b5db92 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.7.2) stable; urgency=medium
+
+  * New synapse release 1.7.2.
+
+ -- Synapse Packaging team <packages@matrix.org>  Fri, 20 Dec 2019 10:56:50 +0000
+
 matrix-synapse-py3 (1.7.1) stable; urgency=medium
 
   * New synapse release 1.7.1.
diff --git a/synapse/__init__.py b/synapse/__init__.py
index e951bab593..996101cf09 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -36,7 +36,7 @@ try:
 except ImportError:
     pass
 
-__version__ = "1.7.1"
+__version__ = "1.7.2"
 
 if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
     # We import here so that we don't have to install a bunch of deps when