We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf9c89d commit f2f3696Copy full SHA for f2f3696
scripts/bump_version.py
100644
100755
@@ -15,7 +15,7 @@ def run_command(command):
15
16
17
def bump_version(version_type):
18
- init_file = Path("src/odmcp/__init__.py")
+ init_file = Path("src/omproxy/__init__.py")
19
20
# Read current version
21
content = init_file.read_text()
@@ -40,7 +40,7 @@ def bump_version(version_type):
40
init_file.write_text(new_content)
41
42
# Git operations
43
- run_command("git add src/odmcp/__init__.py")
+ run_command("git add src/omproxy/__init__.py")
44
run_command(f'git commit -m "release {new_version}: version bump commit"')
45
run_command("git push")
46
run_command(f"git tag v{new_version}")
0 commit comments