From dc5eb913fb01e2195db502b82b9f3e2cb9cb414d Mon Sep 17 00:00:00 2001 From: flaport Date: Thu, 20 Jun 2024 10:45:18 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0=20=E2=86=92=200.11.0?= 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 +- meow/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 31dc5d7..02c484e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.11.0 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 70c5ef9..649725c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,14 +36,14 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - dist/meow-sim-0.10.0.tar.gz - dist/meow_sim-0.10.0-py3-none-any.whl + dist/meow-sim-0.11.0.tar.gz + dist/meow_sim-0.11.0-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/meow-sim-0.10.0.tar.gz \ - dist/meow_sim-0.10.0-py3-none-any.whl \ + dist/meow-sim-0.11.0.tar.gz \ + dist/meow_sim-0.11.0-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_TOKEN }} diff --git a/docs/source/conf.py b/docs/source/conf.py index 4586726..dc8063e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ project = "meow" copyright = "2022, Apache2" author = "Floris Laporte" -release = "0.10.0" +release = "0.11.0" extensions = [ "myst_nb", "matplotlib.sphinxext.plot_directive", diff --git a/meow/__init__.py b/meow/__init__.py index cf7e01f..7e03d7a 100644 --- a/meow/__init__.py +++ b/meow/__init__.py @@ -1,7 +1,7 @@ """ MEOW: Modeling of Eigenmodes and Overlaps in Waveguides """ __author__ = "Floris Laporte" -__version__ = "0.10.0" +__version__ = "0.11.0" from .array import Dim as Dim from .array import DType as DType diff --git a/pyproject.toml b/pyproject.toml index d75bb23..e3cc46f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["build", "pip", "setuptools", "wheel", "pybind11"] [project] name = "meow-sim" -version = "0.10.0" +version = "0.11.0" authors = [ { name = "Rockley Photonics" }, { name = "Floris Laporte", email = "floris.laporte@rockleyphotonics.com" },