summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-02-14 17:20:02 +0000
committerRichard van der Hoff <richard@matrix.org>2019-02-14 17:20:02 +0000
commitf595d6ac577696744e56da3429a53b2a0eb1d952 (patch)
tree93d140864a106c2ca54d80ff4c38a3e92bf35973
parentFix errors in acme provisioning (#4648) (diff)
downloadsynapse-f595d6ac577696744e56da3429a53b2a0eb1d952.tar.xz
0.99.1.1 v0.99.1.1
-rw-r--r--CHANGES.md10
-rw-r--r--changelog.d/4648.bugfix2
-rw-r--r--debian/changelog6
-rw-r--r--synapse/__init__.py2
4 files changed, 17 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md

index 872ac440b5..f1a9d58e4d 100644 --- a/CHANGES.md +++ b/CHANGES.md
@@ -1,3 +1,13 @@ +Synapse 0.99.1.1 (2019-02-14) +============================= + +Bugfixes +-------- + +- Fix "TypeError: '>' not supported" when starting without an existing certificate. + Fix a bug where an existing certificate would be reprovisoned every day. ([\#4648](https://github.com/matrix-org/synapse/issues/4648)) + + Synapse 0.99.1 (2019-02-14) =========================== diff --git a/changelog.d/4648.bugfix b/changelog.d/4648.bugfix deleted file mode 100644
index bd117e8664..0000000000 --- a/changelog.d/4648.bugfix +++ /dev/null
@@ -1,2 +0,0 @@ -Fix "TypeError: '>' not supported" when starting without an existing certificate. -Fix a bug where an existing certificate would be reprovisoned every day. diff --git a/debian/changelog b/debian/changelog
index bc1ba153e3..124128920b 100644 --- a/debian/changelog +++ b/debian/changelog
@@ -1,3 +1,9 @@ +matrix-synapse-py3 (0.99.1.1) stable; urgency=medium + + * New synapse release 0.99.1.1 + + -- Synapse Packaging team <packages@matrix.org> Thu, 14 Feb 2019 17:19:44 +0000 + matrix-synapse-py3 (0.99.1) stable; urgency=medium [ Damjan Georgievski ] diff --git a/synapse/__init__.py b/synapse/__init__.py
index f7bac0ea4e..2004375f98 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py
@@ -27,4 +27,4 @@ try: except ImportError: pass -__version__ = "0.99.1" +__version__ = "0.99.1.1"