diff options
-rw-r--r-- | CHANGES.rst | 9 | ||||
-rw-r--r-- | UPGRADE.rst | 13 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
4 files changed, 23 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index dab9285f3b..0645dca127 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,16 @@ +Changes in synapse 0.4.1 (2014-10-17) +===================================== +Webclient: + * Fix bug with display of timestamps. + Changes in synpase 0.4.0 (2014-10-17) ===================================== This server includes changes to the federation protocol that is not backwards compatible. -The Matrix specification has been moved to a seperate git repository. +The Matrix specification has been moved to a separate git repository. + +You will also need an updated syutil and config. See UPGRADES.rst. Homeserver: * Sign federation transactions. diff --git a/UPGRADE.rst b/UPGRADE.rst index 713fb9ae83..99ce1a2d3d 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -1,3 +1,16 @@ +Upgrading to v0.4.0 +=================== + +This release needs an updated syutil version. Run:: + + python setup.py develop + +You will also need to upgrade your configuration as the signing key format has +changed. Run:: + + python -m synapse.app.homeserver --config-path <CONFIG> --generate-config + + Upgrading to v0.3.0 =================== diff --git a/VERSION b/VERSION index 1d0ba9ea18..267577d47e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.1 diff --git a/synapse/__init__.py b/synapse/__init__.py index 979eac08a7..7067188c5b 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.0" +__version__ = "0.4.1" |