From 2a9f966abc450f09f08d69a87ebfe8efce3251ef Mon Sep 17 00:00:00 2001 From: flaport Date: Thu, 7 Dec 2023 11:20:56 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.4=20=E2=86=92=200.3.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .github/workflows/publish.yml | 8 ++++---- fdtd/__init__.py | 2 +- setup.cfg | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fefddec..eb33d81 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.4 +current_version = 0.3.5 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1a234bc..db00146 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/fdtd-0.3.4.tar.gz - dist/fdtd-0.3.4-py3-none-any.whl + dist/fdtd-0.3.5.tar.gz + dist/fdtd-0.3.5-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/fdtd-0.3.4.tar.gz \ - dist/fdtd-0.3.4-py3-none-any.whl \ + dist/fdtd-0.3.5.tar.gz \ + dist/fdtd-0.3.5-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_API_TOKEN }} diff --git a/fdtd/__init__.py b/fdtd/__init__.py index 13effcb..3ad7d86 100644 --- a/fdtd/__init__.py +++ b/fdtd/__init__.py @@ -1,7 +1,7 @@ """ Python 3D FDTD Simulator """ __author__ = "Floris laporte" -__version__ = "0.3.4" +__version__ = "0.3.5" from .grid import Grid from .sources import PointSource, LineSource, PlaneSource diff --git a/setup.cfg b/setup.cfg index 7b08014..c2ba948 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fdtd -version = 0.3.4 +version = 0.3.5 description = a 3D electromagnetic FDTD simulator written in Python author = Floris Laporte author_email = floris.laporte@gmail.com