summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-09-19 17:16:56 +0100
committerErik Johnston <erik@matrix.org>2016-09-19 17:16:56 +0100
commit2b8ff4659fa2ecdfdaf9f455a5f08d42ef6aa1e9 (patch)
tree3184c8b912fdf11d29f7254ab879447f677e353b
parentMerge branch 'develop' of github.com:matrix-org/synapse into release-v0.18.0 (diff)
downloadsynapse-2b8ff4659fa2ecdfdaf9f455a5f08d42ef6aa1e9.tar.xz
Bump version and changelog
-rw-r--r--CHANGES.rst17
-rw-r--r--synapse/__init__.py2
2 files changed, 16 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst

index 50f123b379..4dcaf1170d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst
@@ -1,5 +1,5 @@ -Changes in synapse v0.18.0-rc1 (2016-09-16) -=========================================== +Changes in synapse v0.18.0 (2016-09-19) +======================================= The release includes major changes to the state storage database schemas, which significantly reduce database size. Synapse will attempt to upgrade the current @@ -9,6 +9,19 @@ want to consider migrating to using Postgres before upgrading very large SQLite daabases +Changes: + +* Make public room search case insensitive (PR #1127) + + +Bug fixes: + +* Fix and clean up publicRooms pagination (PR #1129) + + +Changes in synapse v0.18.0-rc1 (2016-09-16) +=========================================== + Features: * Add ``only=highlight`` on ``/notifications`` (PR #1081) diff --git a/synapse/__init__.py b/synapse/__init__.py
index 25f65f9bcd..41745170a1 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.18.0-rc1" +__version__ = "0.18.0"