From 9be8304aad1dc32edbcf4eee2c60fdbee6c6ed06 Mon Sep 17 00:00:00 2001 From: flaport Date: Tue, 23 May 2023 06:12:35 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.8=20=E2=86=92=200.3.0?= 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 174a8bb..19275a3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.8 +current_version = 0.3.0 commit = True tag = True tag_name = {new_version} diff --git a/fdtd/__init__.py b/fdtd/__init__.py index 1c84889..95e6970 100644 --- a/fdtd/__init__.py +++ b/fdtd/__init__.py @@ -1,7 +1,7 @@ """ Python 3D FDTD Simulator """ __author__ = "Floris laporte" -__version__ = "0.2.8" +__version__ = "0.3.0" from .grid import Grid from .sources import PointSource, LineSource, PlaneSource diff --git a/setup.cfg b/setup.cfg index 39851b0..156c8d6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fdtd -version = 0.2.8 +version = 0.3.0 description = a 3D electromagnetic FDTD simulator written in Python author = Floris Laporte author_email = floris.laporte@gmail.com