summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-06-20 14:17:15 +0100
committerErik Johnston <erik@matrix.org>2016-06-20 14:17:42 +0100
commit4d362a61ea3173f1be0ac58147db29acfbe1b4c3 (patch)
treed02990fdfefa95205aea31fe6befff2fc6fada3a
parentMerge branch 'develop' of github.com:matrix-org/synapse into release-v0.16.1 (diff)
downloadsynapse-4d362a61ea3173f1be0ac58147db29acfbe1b4c3.tar.xz
Bump version and changelog
-rw-r--r--CHANGES.rst15
-rw-r--r--synapse/__init__.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1a47aae857..ecaaa189d0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,18 @@
+Changes in synapse v0.16.1 (2016-06-20)
+=======================================
+
+Bug fixes:
+
+* Fix assorted bugs in ``/preview_url`` (PR #872)
+* Fix TypeError when setting unicode passwords (PR #873)
+
+
+Performance improvements:
+
+* Turn ``use_frozen_events`` off by default (PR #877)
+* Disable responding with canonical json for federation (PR #878)
+
+
 Changes in synapse v0.16.1-rc1 (2016-06-15)
 ===========================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index faaa86d972..3cd79b1247 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.16.1-rc1"
+__version__ = "0.16.1"