mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-11 12:31:58 +01:00
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.`
This commit is contained in:
parent
a1f87f57ff
commit
798deb3a10
2 changed files with 2 additions and 1 deletions
1
changelog.d/12497.misc
Normal file
1
changelog.d/12497.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix a minor typo in the Debian changelogs generated by the release script.
|
|
@ -230,7 +230,7 @@ def prepare():
|
||||||
debian_version = new_version
|
debian_version = new_version
|
||||||
|
|
||||||
run_until_successful(
|
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,
|
shell=True,
|
||||||
)
|
)
|
||||||
run_until_successful('dch -M -r -D stable ""', shell=True)
|
run_until_successful('dch -M -r -D stable ""', shell=True)
|
||||||
|
|
Loading…
Reference in a new issue