From 498762ac7cf75be18ea4087db84f7a557a9c599c Mon Sep 17 00:00:00 2001 From: "Wang, Wenjing" Date: Wed, 29 Nov 2023 15:35:24 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.7.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 84c6d54..060c259 100644 --- a/SOSAT/__init__.py +++ b/SOSAT/__init__.py @@ -10,7 +10,7 @@ __author__ = """Jeff Burghardt""" __email__ = 'jeffrey.burghardt@pnnl.gov' -__version__ = '0.6.0' +__version__ = '0.7.0' from .stress_state import StressState, units from .constraints import FaultConstraint diff --git a/setup.cfg b/setup.cfg index 621af3c..7a6c3f0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.7.0 commit = True tag = True diff --git a/setup.py b/setup.py index 19fd0d0..a61dc02 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.6.0', + version='0.7.0', zip_safe=False, )