diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-08-02 15:40:44 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-08-02 15:40:44 +0100 |
commit | 43ecfe0b1028fea5e4dda197f5631aed67182ee6 (patch) | |
tree | 46e83aa83aa98e2729a2b455bbb5555d35ff1888 /synapse/__init__.py | |
parent | Merge pull request #3594 from matrix-org/richvdh-patch-1 (diff) | |
parent | changelog: this is a security release (diff) | |
download | synapse-43ecfe0b1028fea5e4dda197f5631aed67182ee6.tar.xz |
Merge tag 'v0.33.1'
Synapse 0.33.1 (2018-08-02) =========================== SECURITY FIXES -------------- - Fix a potential issue where servers could request events for rooms they have not joined. (`#3641 <https://github.com/matrix-org/synapse/issues/3641>`_) - Fix a potential issue where users could see events in private rooms before they joined. (`#3642 <https://github.com/matrix-org/synapse/issues/3642>`_)
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 5c0f2f83aa..1810cb6fcd 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -17,4 +17,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.33.0" +__version__ = "0.33.1" |