Skip to content

Commit

Permalink
Bump version: 0.8.8 → 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Aug 18, 2023
1 parent 90b64d5 commit 4d26239
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.8
current_version = 0.8.9
commit = True
tag = True
tag_name = {new_version}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
dist/sax-0.8.8.tar.gz
dist/sax-0.8.8-py3-none-any.whl
dist/sax-0.8.9.tar.gz
dist/sax-0.8.9-py3-none-any.whl
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/sax-0.8.8.tar.gz \
dist/sax-0.8.8-py3-none-any.whl \
dist/sax-0.8.9.tar.gz \
dist/sax-0.8.9-py3-none-any.whl \
--username __token__ \
--password ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ dependencies:
# - klujax # not suppored on windows
# other
- tmm
- sax==0.8.8
- sax==0.8.9
- datamodel_code_generator
2 changes: 1 addition & 1 deletion nbs/99_init.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"from __future__ import annotations\n",
"\n",
"__author__ = \"Floris Laporte\"\n",
"__version__ = \"0.8.8\""
"__version__ = \"0.8.9\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sax"
version = "0.8.8"
version = "0.8.9"
authors = [
{ name = "Floris Laporte", email = "[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion sax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#nbdev_comment from __future__ import annotations

__author__ = "Floris Laporte"
__version__ = "0.8.8"
__version__ = "0.8.9"

# Cell
from functools import partial as partial
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ author = Floris Laporte
author_email = [email protected]
copyright = Floris Laporte (Apache 2.0)
branch = master
version = 0.8.8
version = 0.8.9
min_python = 3.7
audience = Developers
language = English
Expand Down

0 comments on commit 4d26239

Please sign in to comment.