diff options
author | Erik Johnston <erik@matrix.org> | 2015-11-05 17:20:28 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-11-05 17:20:28 +0000 |
commit | f1dcaf3296c880044a4ccb28e093bc2c71941f7f (patch) | |
tree | 41d3dff0bd5cf7d5996fd97b0206eedfeecdcf7b | |
parent | COMMENTS (diff) | |
download | synapse-f1dcaf3296c880044a4ccb28e093bc2c71941f7f.tar.xz |
Bump changelog and version number
-rw-r--r-- | CHANGES.rst | 17 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index da118b7ceb..169d800ff1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,20 @@ +Changes in synapse v0.11.0-rc1 (XXXX-XX-XX) +=========================================== + +* Add Search API (PR #307, #324, #327, #336, ) +* Add 'archived' state to v2 /sync API (PR #316) +* Add ability to reject invites (PR #317) +* Add config option to disable password login (PR #322) +* Add the login fallback API (PR #330) +* Add room context API (PR #334) +* Add room tagging support (PR #335) +* Add anonymous access support (PR #344, #345, #348) +* Update v2 /sync API to match spec (PR #305, #316, #321, #332, #337, #341) +* Change retry schedule for remote application services (PR #320) +* Change retry schedule for remote servers (PR #340) +* Fix bug where we hosted static content in the incorrect place (PR #329) +* Fix bug where we didn't increment retry interval for remote servers (PR #343) + Changes in synapse v0.10.1-rc1 (2015-10-15) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index e9ce0412ed..f68a15bb85 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.10.1-rc1" +__version__ = "0.11.0-rc1" |