From 1f403a63efffd1915cee8d454b225c02dab06ad1 Mon Sep 17 00:00:00 2001 From: flaport Date: Mon, 27 Mar 2023 16:33:01 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.7=20=E2=86=92=200.2.8?= 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 fd0da5c..174a8bb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.7 +current_version = 0.2.8 commit = True tag = True tag_name = {new_version} diff --git a/fdtd/__init__.py b/fdtd/__init__.py index c95a08d..1c84889 100644 --- a/fdtd/__init__.py +++ b/fdtd/__init__.py @@ -1,7 +1,7 @@ """ Python 3D FDTD Simulator """ __author__ = "Floris laporte" -__version__ = "0.2.7" +__version__ = "0.2.8" from .grid import Grid from .sources import PointSource, LineSource, PlaneSource diff --git a/setup.cfg b/setup.cfg index 8b493f5..39851b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fdtd -version = 0.2.7 +version = 0.2.8 description = a 3D electromagnetic FDTD simulator written in Python author = Floris Laporte author_email = floris.laporte@gmail.com