diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c1d9487..a374783 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.5 +current_version = 0.14.0 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3e42a2d..fa8d185 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,14 +42,14 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - dist/sax-0.13.5.tar.gz - dist/sax-0.13.5-py3-none-any.whl + dist/sax-0.14.0.tar.gz + dist/sax-0.14.0-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/sax-0.13.5.tar.gz \ - dist/sax-0.13.5-py3-none-any.whl \ + dist/sax-0.14.0.tar.gz \ + dist/sax-0.14.0-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_TOKEN }} diff --git a/Dockerfile b/Dockerfile index 0dd2346..32336a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ -FROM flaport/sax:0.13.5 +FROM flaport/sax:0.14.0 diff --git a/Makefile b/Makefile index a09951e..27f69f3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ build: docker: docker build . -t flaport/sax:latest -f Dockerfile.dev - docker build . -t flaport/sax:0.13.5 -f Dockerfile.dev + docker build . -t flaport/sax:0.14.0 -f Dockerfile.dev pre-commit: pre-commit install @@ -15,7 +15,7 @@ nbrun: dockerpush: docker push flaport/sax:latest - docker push flaport/sax:0.13.5 + docker push flaport/sax:0.14.0 .PHONY: docs docs: diff --git a/docs/source/conf.py b/docs/source/conf.py index 7b57f52..be53f68 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.13.5" +release = "0.14.0" extensions = [ "myst_nb", "matplotlib.sphinxext.plot_directive", diff --git a/pyproject.toml b/pyproject.toml index 700717f..3606616 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["setuptools", "pip", "build", "wheel"] [project] name = "sax" -version = "0.13.5" +version = "0.14.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 f5d80f7..9d3fc56 100644 --- a/sax/__init__.py +++ b/sax/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations __author__ = "Floris Laporte" -__version__ = "0.13.5" +__version__ = "0.14.0" from functools import partial as partial