diff options
author | Erik Johnston <erik@matrix.org> | 2015-01-07 14:55:06 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-01-07 14:55:06 +0000 |
commit | cc7a267a85eb3341cef5313010ac195e166f2c0f (patch) | |
tree | 27510a6358b8bc219ccd456622b963a3b394bee3 | |
parent | Remove unused import (diff) | |
parent | Improve change log (diff) | |
download | synapse-cc7a267a85eb3341cef5313010ac195e166f2c0f.tar.xz |
Merge branch 'release-v0.6.1' of github.com:matrix-org/synapse into develop
-rw-r--r-- | CHANGES.rst | 8 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 813ad364ea..297ae914fd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +Changes in synapse 0.6.1 (2015-01-07) +===================================== + + * Major optimizations to improve performance of initial sync and event sending + in large rooms (by up to 10x) + * Media repository now includes a Content-Length header on media downloads. + * Improve quality of thumbnails by changing resizing algorithm. + Changes in synapse 0.6.0 (2014-12-16) ===================================== diff --git a/VERSION b/VERSION index a918a2aa18..ee6cdce3c2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.6.0 +0.6.1 diff --git a/synapse/__init__.py b/synapse/__init__.py index 06167e3c1a..c3f1ac63be 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a synapse home server. """ -__version__ = "0.6.0" +__version__ = "0.6.1" |