Brendan Abolivier 3 years ago
parent
commit
65eb078498
5 changed files with 17 additions and 3 deletions
  1. 10 0
      CHANGES.md
  2. 0 1
      changelog.d/7684.bugfix
  3. 0 1
      changelog.d/7685.bugfix
  4. 6 0
      debian/changelog
  5. 1 1
      synapse/__init__.py

+ 10 - 0
CHANGES.md

@@ -1,3 +1,13 @@
+Synapse 1.15.1 (2020-06-16)
+===========================
+
+Bugfixes
+--------
+
+- Fix a bug introduced on v1.15.0 that would crash Synapse on start when using certain password auth providers. ([\#7684](https://github.com/matrix-org/synapse/issues/7684))
+- Fix a bug introduced on v1.15.0 which meant that some 3PID management endpoints were not accessible on the correct URL. ([\#7685](https://github.com/matrix-org/synapse/issues/7685))
+
+
 Synapse 1.15.0 (2020-06-11)
 ===========================
 

+ 0 - 1
changelog.d/7684.bugfix

@@ -1 +0,0 @@
-Fix a bug that would crash Synapse on start when using certain password auth providers. Broke in release v1.15.0.

+ 0 - 1
changelog.d/7685.bugfix

@@ -1 +0,0 @@
-Fix bug introduced on v1.15.0 which meant that some 3PID management endpoints were not accessible on the correct URL.

+ 6 - 0
debian/changelog

@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.15.1) stable; urgency=medium
+
+  * New synapse release 1.15.1.
+
+ -- Synapse Packaging team <packages@matrix.org>  Tue, 16 Jun 2020 10:27:50 +0100
+
 matrix-synapse-py3 (1.15.0) stable; urgency=medium
 
   * New synapse release 1.15.0.

+ 1 - 1
synapse/__init__.py

@@ -36,7 +36,7 @@ try:
 except ImportError:
     pass
 
-__version__ = "1.15.0"
+__version__ = "1.15.1"
 
 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