summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-05-17 11:26:57 +0100
committerErik Johnston <erik@matrix.org>2017-05-17 11:26:57 +0100
commit3a431a126d50761976a45ec495c63a34a6452f4f (patch)
tree7565731b81b1099d4f2d64e0441edcbb31f8318f
parentMerge branch 'develop' of github.com:matrix-org/synapse into release-v0.21.0 (diff)
downloadsynapse-3a431a126d50761976a45ec495c63a34a6452f4f.tar.xz
Bump changelog and version
-rw-r--r--CHANGES.rst24
-rw-r--r--synapse/__init__.py2
2 files changed, 25 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index babeaa0ded..b6068ba995 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,27 @@
+Changes in synapse v0.21.0-rc3 (2017-05-17)
+===========================================
+
+Features:
+
+* Add per user ratelimiting overrides (PR #2208)
+* Add config option to limit maximum number of events requested by ``/sync``
+  and ``/messages`` (PR #2221) Thanks to @psaavedra!
+
+
+Changes:
+
+* Various small performance fixes (PR #2201, #2202, #2224, #2226, #2227, #2228)
+* Update username availability checker API (PR #2209, #2213)
+* When purging, don't de-delta state groups we're about to delete (PR #2214)
+* Documantation to chek synapse version (PR #2215) Thanks to @hamber-dick!
+* Add an index to event_search to speed up purge history API (PR #2218)
+
+
+Bug fixes:
+
+* Fix API to allow clients to upload one-time-keys with new sigs (PR #2206)
+
+
 Changes in synapse v0.21.0-rc2 (2017-05-08)
 ===========================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index d4ad23fa3d..c39dde913f 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.21.0-rc2"
+__version__ = "0.21.0-rc3"