diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-02-11 11:06:28 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-02-11 11:06:28 +0000 |
commit | 856b2a9555b6c5a70b98ad2a1e14b7dbee0949f3 (patch) | |
tree | 2faf917bbddcbda9e028de3866df74895718781e | |
parent | changelog wording (diff) | |
download | synapse-856b2a9555b6c5a70b98ad2a1e14b7dbee0949f3.tar.xz |
1.10.0rc5 v1.10.0rc5
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md index ab031fccdc..1995a70b19 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -Synapse 1.10.0rc4 (2020-02-11) +Synapse 1.10.0rc5 (2020-02-11) ============================== Bugfixes @@ -6,6 +6,10 @@ Bugfixes - Fix the filtering introduced in 1.10.0rc3 to also apply to the state blocks returned by `/sync`. ([\#6884](https://github.com/matrix-org/synapse/issues/6884)) +Synapse 1.10.0rc4 (2020-02-11) +============================== + +This release candidate was built incorrectly and is superceded by 1.10.0rc5. Synapse 1.10.0rc3 (2020-02-10) ============================== diff --git a/synapse/__init__.py b/synapse/__init__.py index cc69ff0c41..ba339004ba 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -36,7 +36,7 @@ try: except ImportError: pass -__version__ = "1.10.0rc4" +__version__ = "1.10.0rc5" 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 |