diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-10-17 16:40:56 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-10-17 16:40:56 +0100 |
commit | 71cd3fed669a55e6ef000591ca89fe01b37a5ee1 (patch) | |
tree | 8c63016510a017974f28eef2879ee0176bf09399 | |
parent | Do the update as a background index (diff) | |
download | synapse-71cd3fed669a55e6ef000591ca89fe01b37a5ee1.tar.xz |
1.4.1rc1 v1.4.1rc1
-rw-r--r-- | CHANGES.md | 8 | ||||
-rw-r--r-- | changelog.d/6185.bugfix | 1 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md index 165e1d4db4..ecba33bd30 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +Synapse 1.4.1rc1 (2019-10-17) +============================= + +Bugfixes +-------- + +- Fix bug where redacted events were sometimes incorrectly censored in the database, breaking APIs that attempted to fetch such events. ([\#6185](https://github.com/matrix-org/synapse/issues/6185), [5b0e9948](https://github.com/matrix-org/synapse/commit/5b0e9948eaae801643e594b5abc8ee4b10bd194e)) + Synapse 1.4.0 (2019-10-03) ========================== diff --git a/changelog.d/6185.bugfix b/changelog.d/6185.bugfix deleted file mode 100644 index 9d1c669b88..0000000000 --- a/changelog.d/6185.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix bug where redacted events were sometimes incorrectly censored in the database, breaking APIs that attempted to fetch such events. diff --git a/synapse/__init__.py b/synapse/__init__.py index 2d52d26af5..2fc0c3cf85 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -35,4 +35,4 @@ try: except ImportError: pass -__version__ = "1.4.0" +__version__ = "1.4.1rc1" |