From 05e96ea332a439916d8fa7bcde0d0101a53d6018 Mon Sep 17 00:00:00 2001 From: "wenjing.wang@pnnl.gov" Date: Thu, 15 Feb 2024 10:54:47 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.1=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 ff929cd..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.1' +__version__ = '0.7.0' from .stress_state import StressState, units from .constraints import FaultConstraint diff --git a/setup.cfg b/setup.cfg index 2aa381f..7a6c3f0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.7.0 commit = True tag = True diff --git a/setup.py b/setup.py index a64e13a..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.1', + version='0.7.0', zip_safe=False, )