diff options
author | Azrenbeth <7782548+Azrenbeth@users.noreply.github.com> | 2021-09-07 16:20:03 +0100 |
---|---|---|
committer | Azrenbeth <7782548+Azrenbeth@users.noreply.github.com> | 2021-09-07 16:20:03 +0100 |
commit | 66313216876f0be2c34190ed8fbf63ee9931f655 (patch) | |
tree | 061c62cc0c61774d6d02167f38bc726244a6ab83 | |
parent | Improve changelog wording (diff) | |
download | synapse-66313216876f0be2c34190ed8fbf63ee9931f655.tar.xz |
1.42.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 f9659d596d..a1fc8675ec 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +Synapse 1.42.0 (2021-09-07) +=========================== + +No significant changes. + + Synapse 1.42.0rc2 (2021-09-06) ============================== diff --git a/debian/changelog b/debian/changelog index e865e0d2f6..4a37174a94 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.42.0) stable; urgency=medium + + * New synapse release 1.42.0. + + -- Synapse Packaging team <packages@matrix.org> Tue, 07 Sep 2021 16:19:09 +0100 + matrix-synapse-py3 (1.42.0~rc2) stable; urgency=medium * New synapse release 1.42.0~rc2. diff --git a/synapse/__init__.py b/synapse/__init__.py index e4302d81a8..dc7ae24295 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.42.0rc2" +__version__ = "1.42.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 |