diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-18 14:46:23 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-18 14:46:23 +0100 |
commit | 9fd0c74e90df6fb34f07c526c29d28387fde007f (patch) | |
tree | d26a20b5d13a370fabafa61124681674e7e16ec3 | |
parent | SYWEB-40: Only local rooms are shown in the recents list. (diff) | |
download | synapse-9fd0c74e90df6fb34f07c526c29d28387fde007f.tar.xz |
Bump changelog and versions v0.3.1
-rw-r--r-- | CHANGES.rst | 9 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 4e536bc4de..edf32db752 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +Changes in synapse 0.3.1 (2014-09-18) +===================================== +This is a release to hotfix v0.3.0 to fix two regressions. + +Webclient: + * Fix a regression where we sometimes displayed duplicate events. + * Fix a regression where we didn't immediately remove rooms you were + banned in from the recents list. + Changes in synapse 0.3.0 (2014-09-18) ===================================== See UPGRADE for information about changes to the client server API, including diff --git a/VERSION b/VERSION index 0d91a54c7d..9e11b32fca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.3.1 diff --git a/synapse/__init__.py b/synapse/__init__.py index 8ef176ea6f..1b49cbb38e 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.3.0" +__version__ = "0.3.1" |