diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-02-08 11:35:05 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2022-02-08 11:35:05 +0000 |
commit | 7d56b6c083d7d2eb683795d482453923c3e8be15 (patch) | |
tree | 924fc8d0e409a43eec4141222a2e2a828bf29c88 | |
parent | Don't mention 3.6 EOL under misc (diff) | |
download | synapse-7d56b6c083d7d2eb683795d482453923c3e8be15.tar.xz |
1.52.0
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md index 36707db03b..cee0549036 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +Synapse 1.52.0 (2022-02-08) +=========================== + +No significant changes. + + Synapse 1.52.0rc1 (2022-02-01) ============================== diff --git a/debian/changelog b/debian/changelog index a458885655..64ea103f3e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.52.0) stable; urgency=medium + + * New synapse release 1.52.0. + + -- Synapse Packaging team <packages@matrix.org> Tue, 08 Feb 2022 11:34:54 +0000 + matrix-synapse-py3 (1.52.0~rc1) stable; urgency=medium * New synapse release 1.52.0~rc1. diff --git a/synapse/__init__.py b/synapse/__init__.py index 5e65033061..a23563937a 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.52.0rc1" +__version__ = "1.52.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 |