diff options
author | Patrick Cloke <patrickc@matrix.org> | 2020-05-19 09:19:09 -0400 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2020-05-19 09:19:09 -0400 |
commit | ac3264bf1ec8815cde14d77a62caad373c280ef1 (patch) | |
tree | ffa2ec685d8ab04965b11fdfd5fff37d14e4d70f | |
parent | update dh-virtualenv (#7526) (diff) | |
download | synapse-ac3264bf1ec8815cde14d77a62caad373c280ef1.tar.xz |
1.13.0
-rw-r--r-- | CHANGES.md | 9 | ||||
-rw-r--r-- | changelog.d/7526.misc | 1 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
4 files changed, 16 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md index 45008995e5..04a3e525e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +Synapse 1.13.0 (2020-05-19) +=========================== + +Internal Changes +---------------- + +- Update the version of dh-virtualenv we use to build debs, and add focal to the list of target distributions. ([\#7526](https://github.com/matrix-org/synapse/issues/7526)) + + Synapse 1.13.0rc3 (2020-05-18) ============================== diff --git a/changelog.d/7526.misc b/changelog.d/7526.misc deleted file mode 100644 index c739312c4c..0000000000 --- a/changelog.d/7526.misc +++ /dev/null @@ -1 +0,0 @@ -Update the version of dh-virtualenv we use to build debs, and add focal to the list of target distributions. diff --git a/debian/changelog b/debian/changelog index 2db94ee609..e7842d4174 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,12 @@ -matrix-synapse-py3 (1.12.3ubuntu1) UNRELEASED; urgency=medium +matrix-synapse-py3 (1.13.0) stable; urgency=medium + [ Patrick Cloke ] * Add information about .well-known files to Debian installation scripts. - -- Patrick Cloke <patrickc@matrix.org> Mon, 06 Apr 2020 10:10:38 -0400 + [ Synapse Packaging team ] + * New synapse release 1.13.0. + + -- Synapse Packaging team <packages@matrix.org> Tue, 19 May 2020 09:16:56 -0400 matrix-synapse-py3 (1.12.4) stable; urgency=medium diff --git a/synapse/__init__.py b/synapse/__init__.py index 6b26c5e87e..0abf491172 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -36,7 +36,7 @@ try: except ImportError: pass -__version__ = "1.13.0rc3" +__version__ = "1.13.0" 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 |