Skip to content

Commit

Permalink
Bump version: 0.3.2 → 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Nov 17, 2023
1 parent 68a0092 commit cf093ac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .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}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit cf093ac

Please sign in to comment.