From a7b2a7cfec73a376d40f8c1f76391edad7210dfa Mon Sep 17 00:00:00 2001 From: flaport Date: Fri, 17 Nov 2023 10:07:04 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.1=20=E2=86=92=200.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- fdtd/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 67869dd..9aa1096 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 commit = True tag = True tag_name = {new_version} diff --git a/fdtd/__init__.py b/fdtd/__init__.py index 049d6af..adfef07 100644 --- a/fdtd/__init__.py +++ b/fdtd/__init__.py @@ -1,7 +1,7 @@ """ Python 3D FDTD Simulator """ __author__ = "Floris laporte" -__version__ = "0.3.1" +__version__ = "0.3.2" from .grid import Grid from .sources import PointSource, LineSource, PlaneSource diff --git a/setup.cfg b/setup.cfg index f949d3e..53142ff 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fdtd -version = 0.3.1 +version = 0.3.2 description = a 3D electromagnetic FDTD simulator written in Python author = Floris Laporte author_email = floris.laporte@gmail.com