diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2022-01-18 10:41:36 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2022-01-18 10:41:36 +0000 |
commit | 3ba9389699529f8173f787029a281ea851bf3f06 (patch) | |
tree | 48f64671218ffa93a7f72477f70f5ad7989595e4 | |
parent | Tweak the changelog summary section (diff) | |
download | synapse-3ba9389699529f8173f787029a281ea851bf3f06.tar.xz |
1.50.0
-rw-r--r-- | CHANGES.md | 11 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md index 8f53ce6c51..fb4739dd04 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,16 @@ -Synapse 1.50.0rc2 (2022-01-14) -============================== +Synapse 1.50.0 (2022-01-18) +=========================== -This release candidate fixes a federation-breaking regression introduced in Synapse 1.50.0rc1. +No significant changes since 1.50.0rc2. Please note that we now only support Python 3.7+ and PostgreSQL 10+ (if applicable), because Python 3.6 and PostgreSQL 9.6 have reached end-of-life. +Synapse 1.50.0rc2 (2022-01-14) +============================== + +This release candidate fixes a federation-breaking regression introduced in Synapse 1.50.0rc1. + Bugfixes -------- diff --git a/debian/changelog b/debian/changelog index 381980f468..f1245cd3af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.50.0) stable; urgency=medium + + * New synapse release 1.50.0. + + -- Synapse Packaging team <packages@matrix.org> Tue, 18 Jan 2022 10:40:38 +0000 + matrix-synapse-py3 (1.50.0~rc2) stable; urgency=medium * New synapse release 1.50.0~rc2. diff --git a/synapse/__init__.py b/synapse/__init__.py index f2dac4e7de..201925e91d 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.50.0rc2" +__version__ = "1.50.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 |