Skip to content

Commit

Permalink
chore: another version test
Browse files Browse the repository at this point in the history
  • Loading branch information
eckelsjd committed Dec 7, 2023
1 parent 375d42e commit 50bfa2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
repo = Repo(Path('.'))
repo.git.checkout('main')
tag_message = sys.argv[1] if len(sys.argv) == 2 else ""
new_tag = repo.create_tag(amisc.__version__, message=tag_message)
new_tag = repo.create_tag(f'v{amisc.__version__}', message=tag_message)
repo.remotes.origin.push(refspec='main:main')
repo.remotes.origin.push(new_tag)
2 changes: 1 addition & 1 deletion src/amisc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
- Author - Joshua Eckels (eckelsjd@umich.edu)
- License - GNU GPLv3
"""
__version__ = "0.0.6"
__version__ = "0.0.7"

0 comments on commit 50bfa2d

Please sign in to comment.