diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7c90639..f092f1c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.2 +current_version = 0.13.0 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 141a67c..da3b648 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,14 +40,14 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - dist/sax-0.12.2.tar.gz - dist/sax-0.12.2-py3-none-any.whl + dist/sax-0.13.0.tar.gz + dist/sax-0.13.0-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/sax-0.12.2.tar.gz \ - dist/sax-0.12.2-py3-none-any.whl \ + dist/sax-0.13.0.tar.gz \ + dist/sax-0.13.0-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_TOKEN }} diff --git a/docs/source/conf.py b/docs/source/conf.py index 806bdf9..9062c84 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,7 +19,7 @@ project = "sax" copyright = "2023, Apache2" author = "Floris Laporte" -release = "0.12.2" +release = "0.13.0" extensions = [ "myst_nb", "matplotlib.sphinxext.plot_directive", diff --git a/pyproject.toml b/pyproject.toml index 1347f7d..ed6e0e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["setuptools", "pip", "build", "wheel"] [project] name = "sax" -version = "0.12.2" +version = "0.13.0" requires-python = ">=3.10.0" authors = [ { name = "Floris Laporte", email = "floris.laporte@gmail.com" }, diff --git a/sax/__init__.py b/sax/__init__.py index e9c219c..ecf95e4 100644 --- a/sax/__init__.py +++ b/sax/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations __author__ = "Floris Laporte" -__version__ = "0.12.2" +__version__ = "0.13.0" from functools import partial as partial