From 571ac105e6bf9c0de328bb22b095b97fbd09e5ae Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Mon, 24 Aug 2015 17:10:45 +0100 Subject: Bump version and changelog --- synapse/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'synapse/__init__.py') diff --git a/synapse/__init__.py b/synapse/__init__.py index 5853165a21..b4eab89d4e 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.10.0-rc1" +__version__ = "0.10.0-rc2" -- cgit 1.4.1 From 90fde4b8d7f2f74822df1008dadb4c31c2cde56c Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 25 Aug 2015 17:49:58 +0100 Subject: Bump changelog and version --- CHANGES.rst | 17 +++++++++++++++++ synapse/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) (limited to 'synapse/__init__.py') diff --git a/CHANGES.rst b/CHANGES.rst index f4946c6df3..5f16e44856 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,20 @@ +Changes in synapse v0.10.0-rc3 (2015-08-25) +=========================================== + +* Add ``--keys-directory`` config option to specify where files such as + certs and signing keys should be stored in, when using ``--generate-config`` + or ``--generate-keys``. +* Allow ``--config-path`` to specify a directory, causing synapse to use all + \*.yaml files in the directory as config files. +* Add ``web_client_location`` config option to specify static files to be + hosted by synapse under ``/_matrix/client``. +* Add helper utility to synapse to read and parse the config files and extract + the value of a given key. For example:: + + $ python -m synapse.config read server_name -c homeserver.yaml + localhost + + Changes in synapse v0.10.0-rc2 (2015-08-24) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index b4eab89d4e..41e3283f0e 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.10.0-rc2" +__version__ = "0.10.0-rc3" -- cgit 1.4.1 From 25b32b63aee6cc2feb4ffdd4c247475f63a241dc Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 27 Aug 2015 10:09:32 +0100 Subject: Bump changelog and version --- CHANGES.rst | 13 ++++++++++--- synapse/__init__.py | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'synapse/__init__.py') diff --git a/CHANGES.rst b/CHANGES.rst index 5f16e44856..22921668e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,19 +1,26 @@ +Changes in synapse v0.10.0-rc4 (2015-08-27) +=========================================== + +* Allow UTF-8 filenames for upload. (PR #259) + Changes in synapse v0.10.0-rc3 (2015-08-25) =========================================== * Add ``--keys-directory`` config option to specify where files such as certs and signing keys should be stored in, when using ``--generate-config`` - or ``--generate-keys``. + or ``--generate-keys``. (PR #250) * Allow ``--config-path`` to specify a directory, causing synapse to use all - \*.yaml files in the directory as config files. + \*.yaml files in the directory as config files. (PR #249) * Add ``web_client_location`` config option to specify static files to be - hosted by synapse under ``/_matrix/client``. + hosted by synapse under ``/_matrix/client``. (PR #245) * Add helper utility to synapse to read and parse the config files and extract the value of a given key. For example:: $ python -m synapse.config read server_name -c homeserver.yaml localhost + (PR #246) + Changes in synapse v0.10.0-rc2 (2015-08-24) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index 41e3283f0e..635f53af1c 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.10.0-rc3" +__version__ = "0.10.0-rc4" -- cgit 1.4.1 From 5371c2a1f74dcd9c79c2cd5166e5b33f7e02afef Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 27 Aug 2015 11:20:36 +0100 Subject: Bump version and changelog --- CHANGES.rst | 5 +++++ synapse/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'synapse/__init__.py') diff --git a/CHANGES.rst b/CHANGES.rst index 22921668e1..8b9916c960 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +Changes in synapse v0.10.0-rc5 (2015-08-27) +=========================================== + +* Fix bug that broke downloading files with ascii filenames across federation. + Changes in synapse v0.10.0-rc4 (2015-08-27) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index 635f53af1c..57b8304d35 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.10.0-rc4" +__version__ = "0.10.0-rc5" -- cgit 1.4.1