summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-07-21 09:50:55 +0100
committerErik Johnston <erik@matrix.org>2015-07-21 09:50:55 +0100
commit712617b4b2f0a7be177efa788969f26f2437da07 (patch)
tree65e910f2823605ebba2e78e4c0552b2d01985ef7
parentMerge branch 'master' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-712617b4b2f0a7be177efa788969f26f2437da07.tar.xz
Bump change log and version to v0.9.4-rc1
-rw-r--r--CHANGES.rst20
-rw-r--r--synapse/__init__.py2
2 files changed, 21 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 6a5fce899a..0337bac107 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,23 @@
+Changes in synapse v0.9.4-rc1 (2015-07-21)
+==========================================
+
+General:
+
+* Add basic implementation of receipts.
+* Add support for configuration presets in room creation API.
+* Add auth event that limits the visibility of history for new users.
+* Add SAML2 login/registration support.
+* Add Content-Disposition headers to content repository responses.
+* Change power level semantics so that you cannot kick, ban or change power
+  levels of users that have equal or greater power level than you.
+* Bulk insert events where appropriate.
+* Bulk verify signatures where appropriate.
+
+
+Configuration:
+
+* Add support for including TLS certifcate chains.
+
 Changes in synapse v0.9.3 (2015-07-01)
 ======================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 96e37308d6..40c535d6f0 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.9.3"
+__version__ = "0.9.4-rc1"