Skip to content

Commit

Permalink
Update to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lassoan committed Sep 6, 2024
1 parent 139cf0e commit 0fb55e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ jobs:
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion slicerio/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
from typing import Tuple

__version__: str = '1.1.0'
__version__: str = '1.1.1'

__version_info__: Tuple[str, str, str] = tuple(
re.match(r'(\d+\.\d+\.\d+).*', __version__).group(1).split('.')
Expand Down

0 comments on commit 0fb55e2

Please sign in to comment.