Skip to content

Commit d52a1a3

Browse files
committed
print tweaks
1 parent 3b65d09 commit d52a1a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release/create_release_pull_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def overwrite_version(version, dry_run=False):
7272
sys.exit(1)
7373

7474
commit_message = f"chore(deps): change version from {current_version} with {version}"
75-
print(commit_message)
75+
print(f"Updating version in Cargo.toml: {current_version} -> {version}")
7676

7777
if dry_run:
7878
print("Dry-run mode: Skipping version file write and commit.")
@@ -140,7 +140,7 @@ def generate_changelog(dry_run=False):
140140
cwd=REPO_ROOT_DIR)
141141

142142
def create_branch(branch_name, dry_run=False):
143-
print(f"Would create branch: {branch_name}")
143+
print(f"Creating branch: {branch_name}")
144144
if dry_run:
145145
print("Dry-run mode: Skipping branch creation.")
146146
return

0 commit comments

Comments
 (0)