diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-05 11:16:54 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-05 11:16:54 +0100 |
commit | b2c290a6e5e7eb97c6f59ce3b9d1544970232c7b (patch) | |
tree | 80565228eaf5ad648df2eb9238ddb63e7c9535c2 | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into release-v0.17.0 (diff) | |
download | synapse-b2c290a6e5e7eb97c6f59ce3b9d1544970232c7b.tar.xz |
Bump version and changelog
-rw-r--r-- | CHANGES.rst | 16 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index d1c0a1b76a..932cf60bdb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,19 @@ +Changes in synapse v0.17.0-rc4 (2016-08-05) +=========================================== + +Changes: + +* Change the way we summarize URLs when previewing (PR #973) +* Add new /state_ids federation API (PR #979) +* Speed up processing of /state/ response (PR #986) + +Bug fixes: + +* Fix event persistence when event has already been partially persisted + (PR #975, #983, #985) +* Fix port script to also copy across backfilled events (PR #982) + + Changes in synapse v0.17.0-rc3 (2016-08-02) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index 67231e8d97..67ea8a8a9d 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.17.0-rc3" +__version__ = "0.17.0-rc4" |