From b4c7ca66086c7cd3143c8cf6d775822c5df9c152 Mon Sep 17 00:00:00 2001 From: burg137 Date: Thu, 26 Oct 2023 09:17:15 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SOSAT/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SOSAT/__init__.py b/SOSAT/__init__.py index 79317cf..b463d0f 100644 --- a/SOSAT/__init__.py +++ b/SOSAT/__init__.py @@ -10,7 +10,7 @@ __author__ = """Jeff Burghardt""" __email__ = 'jeffrey.burghardt@pnnl.gov' -__version__ = '0.4.0' +__version__ = '0.5.0' from .stress_state import StressState, units from .constraints import FaultConstraint diff --git a/setup.cfg b/setup.cfg index ceabad6..a3b367f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.5.0 commit = True tag = True diff --git a/setup.py b/setup.py index 0ca5420..86fcc70 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/pnnl/SOSAT', - version='0.4.0', + version='0.5.0', zip_safe=False, )