5 files changed, 17 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 37ab5faf67..6b24733aa8 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,13 @@
+# Synapse 1.129.0rc2 (2025-04-30)
+
+### Internal Changes
+
+- Revert the slow background update introduced by [\#18068](https://github.com/element-hq/synapse/issues/18068) in v1.128.0. ([\#18372](https://github.com/element-hq/synapse/issues/18372))
+- Revert "Add total event, unencrypted message, and e2ee event counts to stats reporting", added in v1.129.0rc1. ([\#18373](https://github.com/element-hq/synapse/issues/18373))
+
+
+
+
# Synapse 1.129.0rc1 (2025-04-15)
### Features
diff --git a/changelog.d/18372.misc b/changelog.d/18372.misc
deleted file mode 100644
index d835f44752..0000000000
--- a/changelog.d/18372.misc
+++ /dev/null
@@ -1 +0,0 @@
-Add a column `participant` to `room_memberships` table.
diff --git a/changelog.d/18373.misc b/changelog.d/18373.misc
deleted file mode 100644
index 31817bbdf6..0000000000
--- a/changelog.d/18373.misc
+++ /dev/null
@@ -1 +0,0 @@
-Revert "Add total event, unencrypted message, and e2ee event counts to stats reporting".
diff --git a/debian/changelog b/debian/changelog
index e9eb331477..c4bc3cc966 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+matrix-synapse-py3 (1.129.0~rc2) stable; urgency=medium
+
+ * New synapse release 1.129.0rc2.
+
+ -- Synapse Packaging team <packages@matrix.org> Wed, 30 Apr 2025 13:13:16 +0000
+
matrix-synapse-py3 (1.129.0~rc1) stable; urgency=medium
* New Synapse release 1.129.0rc1.
diff --git a/pyproject.toml b/pyproject.toml
index 76a9cf4a70..3005f71a32 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -97,7 +97,7 @@ module-name = "synapse.synapse_rust"
[tool.poetry]
name = "matrix-synapse"
-version = "1.129.0rc1"
+version = "1.129.0rc2"
description = "Homeserver for the Matrix decentralised comms protocol"
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
license = "AGPL-3.0-or-later"
|