diff options
author | Erik Johnston <erik@matrix.org> | 2020-10-08 11:43:21 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-10-08 11:43:21 +0100 |
commit | 7859c4d079ab707520252d6210cf4bc3d4e54902 (patch) | |
tree | a5882587acf3e1b1cb44f663e2d4fbf4acbf1fca /synapse | |
parent | Add useful shields to readme (#8493) (diff) | |
parent | Update change log (diff) | |
download | synapse-7859c4d079ab707520252d6210cf4bc3d4e54902.tar.xz |
Merge tag 'v1.21.0rc3' into develop
Synapse 1.21.0rc3 (2020-10-08) ============================== Bugfixes -------- - Fix duplication of events on high traffic servers, caused by PostgreSQL `could not serialize access due to concurrent update` errors. ([\#8456](https://github.com/matrix-org/synapse/issues/8456)) Internal Changes ---------------- - Add Groovy Gorilla to the list of distributions we build `.deb`s for. ([\#8475](https://github.com/matrix-org/synapse/issues/8475))
Diffstat (limited to 'synapse')
-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 500558bbdf..a86dc07ddc 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -48,7 +48,7 @@ try: except ImportError: pass -__version__ = "1.21.0rc2" +__version__ = "1.21.0rc3" 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 |