From 02704aa038a6c52e8ab750cc36f50951c231a62b Mon Sep 17 00:00:00 2001 From: flaport Date: Mon, 29 Jan 2024 10:50:30 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.11.1=20=E2=86=92=200.11.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .github/workflows/publish.yml | 8 ++++---- docs/source/conf.py | 2 +- pyproject.toml | 2 +- sax/__init__.py | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7f307c7..c926a26 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.1 +current_version = 0.11.2 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4814914..65aaa42 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.11.1.tar.gz - dist/sax-0.11.1-py3-none-any.whl + dist/sax-0.11.2.tar.gz + dist/sax-0.11.2-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/sax-0.11.1.tar.gz \ - dist/sax-0.11.1-py3-none-any.whl \ + dist/sax-0.11.2.tar.gz \ + dist/sax-0.11.2-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_TOKEN }} diff --git a/docs/source/conf.py b/docs/source/conf.py index 155d725..ba33533 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.11.1" +release = "0.11.2" extensions = [ "myst_nb", "matplotlib.sphinxext.plot_directive", diff --git a/pyproject.toml b/pyproject.toml index 3b9f7c2..1215145 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["setuptools", "pip", "build", "wheel"] [project] name = "sax" -version = "0.11.1" +version = "0.11.2" requires-python = ">=3.9.0" authors = [ { name = "Floris Laporte", email = "floris.laporte@rockleyphotonics.com" }, diff --git a/sax/__init__.py b/sax/__init__.py index c86bc5e..3b2fe3f 100644 --- a/sax/__init__.py +++ b/sax/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations __author__ = "Floris Laporte" -__version__ = "0.11.1" +__version__ = "0.11.2" from functools import partial as partial