From ff798fec7549f7ad832112a6467cf7164c1acb77 Mon Sep 17 00:00:00 2001 From: JoyMonteiro Date: Wed, 8 Feb 2023 18:02:56 +0530 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 3 +-- setup.py | 2 +- sympl/__init__.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index aab87cd..97f9c08 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1 commit = True tag = True @@ -16,4 +16,3 @@ universal = 1 [flake8] exclude = docs - diff --git a/setup.py b/setup.py index f211246..dc4df50 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='sympl', - version='0.4.0', + version='0.4.1', description='Sympl is a Toolkit for building Earth system models in Python.', long_description=readme + '\n\n' + history, author="Jeremy McGibbon", diff --git a/sympl/__init__.py b/sympl/__init__.py index 59259ef..b763020 100644 --- a/sympl/__init__.py +++ b/sympl/__init__.py @@ -33,7 +33,7 @@ from ._core.wrappers import UpdateFrequencyWrapper, ScalingWrapper from ._core.time import datetime, timedelta -__version__ = '0.4.0' +__version__ = '0.4.1' __all__ = ( TendencyComponent, DiagnosticComponent, Stepper, Monitor, TendencyComponentComposite, ImplicitTendencyComponentComposite,