From e6fbb0c12112eafbd99f9a1284517d0ad7ef3f87 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Fri, 10 Jul 2020 12:11:46 +0100 Subject: fix changelog --- CHANGES.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a937b8cc31..f9b8fc51ec 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,12 +11,6 @@ Bugfixes - Drop table `local_rejections_stream` which was incorrectly added in Synapse 1.16.0. ([\#7816](https://github.com/matrix-org/synapse/issues/7816)) -Synapse 1.16.1 (2020-07-10) -=========================== - -No significant changes. - - Synapse 1.16.0 (2020-07-08) =========================== -- cgit 1.5.1 From b1beb3ff59a42799154fa9b5d43de7e270ccbb58 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Fri, 10 Jul 2020 12:18:35 +0100 Subject: fix migration, again --- .../data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql b/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql index 20ebd52e63..eb57203e46 100644 --- a/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql +++ b/synapse/storage/data_stores/main/schema/delta/58/10drop_local_rejections_stream.sql @@ -19,4 +19,4 @@ added a table called 'local_rejections_stream'. This table is not used, and we drop it here for anyone who was affected. */ -DROP TABLE IF NOT EXISTS local_rejections_stream; +DROP TABLE IF EXISTS local_rejections_stream; -- cgit 1.5.1