diff --git a/CHANGES.rst b/CHANGES.rst index 3cd08938a2..5f1fa3a9d5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Changes in synapse 0.5.2 (2014-11-26) +===================================== + +Fix major bug that caused rooms to disspear from peoples initial sync. + Changes in synapse 0.5.1 (2014-11-26) ===================================== See UPGRADES.rst for specific instructions on how to upgrade. diff --git a/VERSION b/VERSION index 4b9fcbec10..cb0c939a93 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.1 +0.5.2 diff --git a/synapse/__init__.py b/synapse/__init__.py index 1c10c2074e..d5c2f25484 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.5.1" +__version__ = "0.5.2"