summary refs log tree commit diff
path: root/scripts-dev
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 /scripts-dev
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.`
Diffstat (limited to 'scripts-dev')
-rwxr-xr-xscripts-dev/release.py2
1 files changed, 1 insertions, 1 deletions
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)