summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-06-11 17:10:01 +0100
committerErik Johnston <erik@matrix.org>2019-06-11 17:10:01 +0100
commit97174780ce726962ca1beb3788b62f16e9fad270 (patch)
treee6e16b3fc40db3bf8d5bece185c1876b7e7f0cb1
parentMerge pull request #5424 from matrix-org/erikj/change_password_reset_links (diff)
downloadsynapse-97174780ce726962ca1beb3788b62f16e9fad270.tar.xz
1.0.0 v1.0.0
-rw-r--r--CHANGES.md21
-rw-r--r--changelog.d/5418.bugfix1
-rw-r--r--changelog.d/5419.doc1
-rw-r--r--changelog.d/5424.misc1
-rw-r--r--debian/changelog6
-rw-r--r--synapse/__init__.py2
6 files changed, 28 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index f4a3ab71ca..1b827c8079 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,24 @@
+Synapse 1.0.0 (2019-06-11)
+==========================
+
+Bugfixes
+--------
+
+- Fix bug where attempting to send transactions with large number of EDUs can fail. ([\#5418](https://github.com/matrix-org/synapse/issues/5418))
+
+
+Improved Documentation
+----------------------
+
+- Expand the federation guide to include relevant content from the MSC1711 FAQ ([\#5419](https://github.com/matrix-org/synapse/issues/5419))
+
+
+Internal Changes
+----------------
+
+- Move password reset links to /_matrix/client/unstable namespace. ([\#5424](https://github.com/matrix-org/synapse/issues/5424))
+
+
 Synapse 1.0.0rc3 (2019-06-10)
 =============================
 
diff --git a/changelog.d/5418.bugfix b/changelog.d/5418.bugfix
deleted file mode 100644
index 3fd4d2a882..0000000000
--- a/changelog.d/5418.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix bug where attempting to send transactions with large number of EDUs can fail.
diff --git a/changelog.d/5419.doc b/changelog.d/5419.doc
deleted file mode 100644
index 74cf5eea8b..0000000000
--- a/changelog.d/5419.doc
+++ /dev/null
@@ -1 +0,0 @@
-Expand the federation guide to include relevant content from the MSC1711 FAQ 
diff --git a/changelog.d/5424.misc b/changelog.d/5424.misc
deleted file mode 100644
index b92b50e317..0000000000
--- a/changelog.d/5424.misc
+++ /dev/null
@@ -1 +0,0 @@
-Move password reset links to /_matrix/client/unstable namespace.
diff --git a/debian/changelog b/debian/changelog
index 6a1a72c0e3..ef4edd7ac0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.0.0) stable; urgency=medium
+
+  * New synapse release 1.0.0.
+
+ -- Synapse Packaging team <packages@matrix.org>  Tue, 11 Jun 2019 17:09:53 +0100
+
 matrix-synapse-py3 (0.99.5.2) stable; urgency=medium
 
   * New synapse release 0.99.5.2.
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 9c75a0a27f..5bc24863d9 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -27,4 +27,4 @@ try:
 except ImportError:
     pass
 
-__version__ = "1.0.0rc3"
+__version__ = "1.0.0"