diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2021-04-22 11:23:34 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2021-04-22 11:23:34 +0100 |
commit | 0f2629ebc6610971557df5810a9b34d7f07c0077 (patch) | |
tree | a6d5910c45102451ed01360b43c75a54e6add399 /synapse/__init__.py | |
parent | Merge branch 'release-v1.32.1' of github.com:matrix-org/synapse (diff) | |
parent | A regression can't be introduced twice (diff) | |
download | synapse-0f2629ebc6610971557df5810a9b34d7f07c0077.tar.xz |
Merge tag 'v1.32.2'
Synapse 1.32.2 (2021-04-22) =========================== This release includes a fix for a regression introduced in 1.32.0. Bugfixes -------- - Fix a regression in Synapse 1.32.0 and 1.32.1 which caused `LoggingContext` errors in plugins. ([\#9857](https://github.com/matrix-org/synapse/issues/9857))
Diffstat (limited to 'synapse/__init__.py')
-rw-r--r-- | synapse/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index a0332d602d..781f5ac3a2 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -48,7 +48,7 @@ try: except ImportError: pass -__version__ = "1.32.1" +__version__ = "1.32.2" 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 |