Skip to content

Commit

Permalink
Bump version: 0.8.6 → 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Jun 1, 2023
1 parent d5d48c1 commit a87c3bf
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.6
current_version = 0.8.7
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.6.tar.gz
dist/sax-0.8.6-py3-none-any.whl
dist/sax-0.8.7.tar.gz
dist/sax-0.8.7-py3-none-any.whl
- name: Publish to PyPI
run: |
pip install --user twine \
&& twine upload \
dist/sax-0.8.6.tar.gz \
dist/sax-0.8.6-py3-none-any.whl \
dist/sax-0.8.7.tar.gz \
dist/sax-0.8.7-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.6
- sax==0.8.7
- 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.6\""
"__version__ = \"0.8.7\""
]
},
{
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.6"
version = "0.8.7"
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.6"
__version__ = "0.8.7"

# 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.6
version = 0.8.7
min_python = 3.7
audience = Developers
language = English
Expand Down

0 comments on commit a87c3bf

Please sign in to comment.