Skip to content

Commit f2f3696

Browse files
committed
fix wrong project ref
1 parent bf9c89d commit f2f3696

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/bump_version.py

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def run_command(command):
1515

1616

1717
def bump_version(version_type):
18-
init_file = Path("src/odmcp/__init__.py")
18+
init_file = Path("src/omproxy/__init__.py")
1919

2020
# Read current version
2121
content = init_file.read_text()
@@ -40,7 +40,7 @@ def bump_version(version_type):
4040
init_file.write_text(new_content)
4141

4242
# Git operations
43-
run_command("git add src/odmcp/__init__.py")
43+
run_command("git add src/omproxy/__init__.py")
4444
run_command(f'git commit -m "release {new_version}: version bump commit"')
4545
run_command("git push")
4646
run_command(f"git tag v{new_version}")

0 commit comments

Comments
 (0)