diff options
author | Erik Johnston <erik@matrix.org> | 2016-06-09 13:23:41 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-06-09 13:23:41 +0100 |
commit | a31befbcd0f8238920b0ca198d35ef657c78e766 (patch) | |
tree | 02a389806a7ed089f813133f2dd969725e50548f | |
parent | Update commit hash in changelog (diff) | |
download | synapse-a31befbcd0f8238920b0ca198d35ef657c78e766.tar.xz |
Bump version and changelog
-rw-r--r-- | CHANGES.rst | 10 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 6194b3eb69..ad974c586b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +Changes in synapse v0.16.0 (2016-06-09) +======================================= + +NB: As of v0.14 all AS config files must have an ID specified. + + +Bug fixes: + +* Don't make rooms published by default (PR #857) + Changes in synapse v0.16.0-rc2 (2016-06-08) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index ad088a7880..dc211e9637 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.0-rc2" +__version__ = "0.16.0" |