diff options
author | Erik Johnston <erik@matrix.org> | 2016-07-07 16:33:00 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-07-07 16:33:00 +0100 |
commit | f90cf150e2b51124bb6848980394c4368e0de73a (patch) | |
tree | 8971ae2bb17f9b8beb293416fb8baffae9b74231 | |
parent | Fix bug where we did not correctly explode when multiple user_ids were set in... (diff) | |
download | synapse-f90cf150e2b51124bb6848980394c4368e0de73a.tar.xz |
Bump version and changelog
-rw-r--r-- | CHANGES.rst | 8 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index ecaaa189d0..e1d5e876dc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +Changes in synapse v0.16.1-r1 (2016-07-08) +========================================== + +THIS IS A CRITICAL SECURITY UPDATE. + +This fixes a bug which allowed users' accounts to be accessed by unauthorised +users. + Changes in synapse v0.16.1 (2016-06-20) ======================================= diff --git a/synapse/__init__.py b/synapse/__init__.py index 3cd79b1247..2750ad3f7a 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.16.1" +__version__ = "0.16.1-r1" |