summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-11-19 18:00:57 +0000
committerErik Johnston <erik@matrix.org>2014-11-19 18:00:57 +0000
commit5b46ce579ba9a198546ff9e19f743eb91a126422 (patch)
tree67a0454a06167f9616d5d8115edf2aacfc877521 /synapse
parentInitialise UserPresenceCache instances to always contain a 'presence' key (diff)
downloadsynapse-5b46ce579ba9a198546ff9e19f743eb91a126422.tar.xz
Bump version, changelog and upgrade.rst
Diffstat (limited to 'synapse')
-rw-r--r--synapse/__init__.py2
-rw-r--r--synapse/storage/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py

index 23ae5f003f..14564e735e 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.4.2" +__version__ = "0.5.0" diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index c36d938d96..330d3b793f 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py
@@ -67,7 +67,7 @@ SCHEMAS = [ # Remember to update this number every time an incompatible change is made to # database schema files, so the users will be informed on server restarts. -SCHEMA_VERSION = 6 +SCHEMA_VERSION = 7 class _RollbackButIsFineException(Exception):