summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2022-04-19 16:41:52 +0100
committerGitHub <noreply@github.com>2022-04-19 16:41:52 +0100
commit798deb3a10e59cfa7b46994417f0c56c4a0bc9f7 (patch)
tree758462e52b0cefcf20d679fe4cdc0aec2c802f36
parentImplement MSC3383: include destination in X-Matrix auth header (#11398) (diff)
downloadsynapse-798deb3a10e59cfa7b46994417f0c56c4a0bc9f7.tar.xz
Fix typo in deb changelogs from release script (#12497)
The release script used to incorrectly write `New synapse release 1.57.0~rc1.`
instead of `New synapse release 1.57.0rc1.`
-rw-r--r--changelog.d/12497.misc1
-rwxr-xr-xscripts-dev/release.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/12497.misc b/changelog.d/12497.misc
new file mode 100644
index 0000000000..17a661ec61
--- /dev/null
+++ b/changelog.d/12497.misc
@@ -0,0 +1 @@
+Fix a minor typo in the Debian changelogs generated by the release script.
diff --git a/scripts-dev/release.py b/scripts-dev/release.py
index 518eaf417c..6f7cf6888d 100755
--- a/scripts-dev/release.py
+++ b/scripts-dev/release.py
@@ -230,7 +230,7 @@ def prepare():
         debian_version = new_version
 
     run_until_successful(
-        f'dch -M -v {debian_version} "New synapse release {debian_version}."',
+        f'dch -M -v {debian_version} "New Synapse release {new_version}."',
         shell=True,
     )
     run_until_successful('dch -M -r -D stable ""', shell=True)