We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c37ed69 commit e74f7a1Copy full SHA for e74f7a1
scripts/bump_version.py
@@ -174,7 +174,7 @@ class VersionBumper(StateMachine):
174
175
If dry_run is True, the command will be printed but not executed."""
176
177
- source_dir = Path("")
+ source_dir = Path("harbor_cli")
178
version_file = source_dir / "__about__.py"
179
changelog_file = Path("CHANGELOG.md")
180
changelog_file_bak = changelog_file.with_suffix(".bak")
@@ -194,7 +194,7 @@ def __init__(
194
195
@property
196
def tag(self) -> str:
197
- return f"-v{self.new_version}"
+ return f"harbor-cli-v{self.new_version}"
198
199
def get_runner(self, dry_run: bool) -> Runner:
200
def dryrun_subprocess_run(
0 commit comments