瀏覽代碼

Change release script to update debian changelog for RCs (#10465)

tags/v1.39.0rc3
Erik Johnston 2 年之前
committed by GitHub
父節點
當前提交
92a882254b
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 2 個文件被更改,包括 21 次插入6 次删除
  1. +1
    -0
      changelog.d/10465.misc
  2. +20
    -6
      scripts-dev/release.py

+ 1
- 0
changelog.d/10465.misc 查看文件

@@ -0,0 +1 @@
Fix release script to correctly version debian changelog when doing RCs.

+ 20
- 6
scripts-dev/release.py 查看文件

@@ -139,6 +139,11 @@ def run():

# Switch to the release branch.
parsed_new_version = version.parse(new_version)

# We assume for debian changelogs that we only do RCs or full releases.
assert not parsed_new_version.is_devrelease
assert not parsed_new_version.is_postrelease

release_branch_name = (
f"release-v{parsed_new_version.major}.{parsed_new_version.minor}"
)
@@ -190,12 +195,21 @@ def run():
# Generate changelogs
subprocess.run("python3 -m towncrier", shell=True)

# Generate debian changelogs if its not an RC.
if not rc:
subprocess.run(
f'dch -M -v {new_version} "New synapse release {new_version}."', shell=True
)
subprocess.run('dch -M -r -D stable ""', shell=True)
# Generate debian changelogs
if parsed_new_version.pre is not None:
# If this is an RC then we need to coerce the version string to match
# Debian norms, e.g. 1.39.0rc2 gets converted to 1.39.0~rc2.
base_ver = parsed_new_version.base_version
pre_type, pre_num = parsed_new_version.pre
debian_version = f"{base_ver}~{pre_type}{pre_num}"
else:
debian_version = new_version

subprocess.run(
f'dch -M -v {debian_version} "New synapse release {debian_version}."',
shell=True,
)
subprocess.run('dch -M -r -D stable ""', shell=True)

# Show the user the changes and ask if they want to edit the change log.
repo.git.add("-u")


Loading…
取消
儲存