From 3c8a57f080a66a3d4d146adf7020c18b397bcf6c Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Mon, 18 May 2020 10:58:51 -0400 Subject: [PATCH] 1.13.0rc3 --- CHANGES.md | 9 +++++++++ changelog.d/7523.bugfix | 1 - synapse/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 changelog.d/7523.bugfix diff --git a/CHANGES.md b/CHANGES.md index 7dbe072fe..45008995e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +Synapse 1.13.0rc3 (2020-05-18) +============================== + +Bugfixes +-------- + +- Hash passwords as early as possible during registration. ([\#7523](https://github.com/matrix-org/synapse/issues/7523)) + + Synapse 1.13.0rc2 (2020-05-14) ============================== diff --git a/changelog.d/7523.bugfix b/changelog.d/7523.bugfix deleted file mode 100644 index 552dae39f..000000000 --- a/changelog.d/7523.bugfix +++ /dev/null @@ -1 +0,0 @@ -Hash passwords as early as possible during registration. diff --git a/synapse/__init__.py b/synapse/__init__.py index 977e26a04..6b26c5e87 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -36,7 +36,7 @@ try: except ImportError: pass -__version__ = "1.13.0rc2" +__version__ = "1.13.0rc3" if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)): # We import here so that we don't have to install a bunch of deps when