Skip to content

Commit 2a9f966

Browse files
committed
Bump version: 0.3.4 → 0.3.5
1 parent 3f4df26 commit 2a9f966

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.4
2+
current_version = 0.3.5
33
commit = True
44
tag = True
55
tag_name = {new_version}

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
uses: softprops/action-gh-release@v1
4141
with:
4242
files: |
43-
dist/fdtd-0.3.4.tar.gz
44-
dist/fdtd-0.3.4-py3-none-any.whl
43+
dist/fdtd-0.3.5.tar.gz
44+
dist/fdtd-0.3.5-py3-none-any.whl
4545
- name: Publish to PyPI
4646
run: |
4747
pip install --user twine \
4848
&& twine upload \
49-
dist/fdtd-0.3.4.tar.gz \
50-
dist/fdtd-0.3.4-py3-none-any.whl \
49+
dist/fdtd-0.3.5.tar.gz \
50+
dist/fdtd-0.3.5-py3-none-any.whl \
5151
--username __token__ \
5252
--password ${{ secrets.PYPI_API_TOKEN }}
5353

fdtd/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" Python 3D FDTD Simulator """
22

33
__author__ = "Floris laporte"
4-
__version__ = "0.3.4"
4+
__version__ = "0.3.5"
55

66
from .grid import Grid
77
from .sources import PointSource, LineSource, PlaneSource

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = fdtd
3-
version = 0.3.4
3+
version = 0.3.5
44
description = a 3D electromagnetic FDTD simulator written in Python
55
author = Floris Laporte
66
author_email = floris.laporte@gmail.com

0 commit comments

Comments
 (0)