diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-12-19 13:40:02 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-12-19 13:40:02 +0000 |
commit | 45a6869cb46ec07c475fca2fee83e4c906a54e94 (patch) | |
tree | 9714da089fd65cd5820b8f8353fcd244102448b2 /UPGRADE.rst | |
parent | Merge branch 'hotfixes-v0.5.4' of github.com:matrix-org/synapse (diff) | |
parent | Bump web sdk version to 0.6.0 (diff) | |
download | synapse-45a6869cb46ec07c475fca2fee83e4c906a54e94.tar.xz |
Merge branch 'release-v0.6.0' v0.6.0
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r-- | UPGRADE.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index 5ebdd455c1..9618ad2d57 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -1,3 +1,23 @@ +Upgrading to v0.6.0 +=================== + +To pull in new dependencies, run:: + + python setup.py develop --user + +This update includes a change to the database schema. To upgrade you first need +to upgrade the database by running:: + + python scripts/upgrade_db_to_v0.6.0.py <db> <server_name> <signing_key> + +Where `<db>` is the location of the database, `<server_name>` is the +server name as specified in the synapse configuration, and `<signing_key>` is +the location of the signing key as specified in the synapse configuration. + +This may take some time to complete. Failures of signatures and content hashes +can safely be ignored. + + Upgrading to v0.5.1 =================== |