summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-10 14:36:06 +0000
committerErik Johnston <erik@matrix.org>2016-02-10 14:36:06 +0000
commit6e89e69d08fe47b3dde4723fe24911231ed390c7 (patch)
treea8fa50ac3f9c410d9a11c1ecce10a2385b2548d7
parentMerge branch 'develop' of github.com:matrix-org/synapse into release-v0.13.0 (diff)
downloadsynapse-6e89e69d08fe47b3dde4723fe24911231ed390c7.tar.xz
Bump version and changelog
-rw-r--r--CHANGES.rst22
-rw-r--r--synapse/__init__.py2
2 files changed, 23 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index b9c956fd03..3ebbdd4822 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,25 @@
+Changes in synapse v0.13.0 (2016-02-10)
+=======================================
+
+This version includes an upgrade of the schema, specifically adding an index to
+the ``events`` table, which may take a minute to complete.
+
+Changes:
+
+* Improve general performance (PR #540, #543. #544, #54, #549, #567)
+* Change guest user ids to be incrementing integers (PR #550)
+* Improve performance of public room list API (PR #552)
+* Change profile API to omit keys rather than return null (PR #557)
+* Change to forward ``/media/r0`` to ``/media/v1`` (PR #595)
+
+Bug fixes:
+
+* Fix bug with upgrading guest accounts where it would fail if you opened the
+  registration email on a different device (PR #547)
+* Fix bug where unread count could be wrong (PR #568)
+
+
+
 Changes in synapse v0.12.1-rc1 (2016-01-29)
 ===========================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index aacacda4fb..426330cc21 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.12.1-rc1"
+__version__ = "0.13.0"