summary refs log tree commit diff
path: root/scripts-dev/release.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-06-08 11:52:11 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2021-06-08 11:52:11 +0100
commitfc8bab82912534ec947719e9ff1465570c6384ef (patch)
treea5743a077dc2b99968f0bc15ca29556ae2e6f2c5 /scripts-dev/release.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentName release branches just after major.minor (#10013) (diff)
downloadsynapse-fc8bab82912534ec947719e9ff1465570c6384ef.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'scripts-dev/release.py')
-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 1042fa48bc..fc3df9071c 100755 --- a/scripts-dev/release.py +++ b/scripts-dev/release.py
@@ -139,7 +139,7 @@ def run(): click.get_current_context().abort() # Switch to the release branch. - release_branch_name = f"release-v{base_version}" + release_branch_name = f"release-v{current_version.major}.{current_version.minor}" release_branch = find_ref(repo, release_branch_name) if release_branch: if release_branch.is_remote():