diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4a2f127..3bd2674 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.2 +current_version = 0.3.3 commit = True tag = True tag_name = {new_version} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 74da642..8e9d873 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.2.tar.gz - dist/fdtd-0.3.2-py3-none-any.whl + dist/fdtd-0.3.3.tar.gz + dist/fdtd-0.3.3-py3-none-any.whl - name: Publish to PyPI run: | pip install --user twine \ && twine upload \ - dist/fdtd-0.3.2.tar.gz \ - dist/fdtd-0.3.2-py3-none-any.whl \ + dist/fdtd-0.3.3.tar.gz \ + dist/fdtd-0.3.3-py3-none-any.whl \ --username __token__ \ --password ${{ secrets.PYPI_API_TOKEN }} diff --git a/fdtd/__init__.py b/fdtd/__init__.py index adfef07..d921629 100644 --- a/fdtd/__init__.py +++ b/fdtd/__init__.py @@ -1,7 +1,7 @@ """ Python 3D FDTD Simulator """ __author__ = "Floris laporte" -__version__ = "0.3.2" +__version__ = "0.3.3" from .grid import Grid from .sources import PointSource, LineSource, PlaneSource diff --git a/setup.cfg b/setup.cfg index 53142ff..ef27433 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fdtd -version = 0.3.2 +version = 0.3.3 description = a 3D electromagnetic FDTD simulator written in Python author = Floris Laporte author_email = floris.laporte@gmail.com