summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst25
-rw-r--r--synapse/__init__.py2
2 files changed, 26 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index e1420d7a35..529ab3ee95 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,28 @@
+Changes in synapse v0.9.1 (2015-05-26)
+======================================
+
+General:
+
+* Add support for backfilling when a client paginates. This allows servers to
+  request history for a room from remote servers when a client tries to
+  paginate history the server does not have - SYN-36
+* Fix bug where we couldn't disable non-default pushrules - SYN-378
+* Fix bug with ``register_new_user`` script - SYN-359
+* Improve performance of fetching events from the database.
+* Improve performance of event streams.
+
+Federation:
+
+* Fix bug with existing backfill implementation where it returned the wrong
+  selection of events in some circumstances.
+* Improve performance of joining remote rooms.
+
+Configuration:
+
+* Add support for changing the bind host of the metrics listener via the
+  ``metrics_bind_host`` option.
+ 
+
 Changes in synapse v0.9.0-r5 (2015-05-21)
 =========================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 68f86138a4..4720d99848 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.0-r5"
+__version__ = "0.9.1"