From b8f55cfe4163469070ccf59fcefb6312e5769fa1 Mon Sep 17 00:00:00 2001 From: PaulKGrimes Date: Tue, 22 Sep 2020 11:01:28 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/graspfile/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6ff6a98..1e08896 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True diff --git a/README.rst b/README.rst index 6f78bf7..902133d 100644 --- a/README.rst +++ b/README.rst @@ -26,9 +26,9 @@ Overview :alt: Coverage Status :target: https://codecov.io/github/Smithsonian/python-graspfile -.. |commits-since| image:: https://img.shields.io/github/commits-since/Smithsonian/python-graspfile/v0.3.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/Smithsonian/python-graspfile/v0.3.1.svg :alt: Commits since latest release - :target: https://github.com/Smithsonian/python-graspfile/compare/v0.3.0...master + :target: https://github.com/Smithsonian/python-graspfile/compare/v0.3.1...master diff --git a/docs/conf.py b/docs/conf.py index b7c655a..50789de 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ year = '2019-2020' author = 'Paul Grimes' copyright = '{0}, {1}'.format(year, author) -version = release = '0.3.0' +version = release = '0.3.1' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index d6ad8c6..a287bfb 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='python-graspfile', - version='0.3.0', + version='0.3.1', license='MIT', description="A package for reading, manipulating and eventually writing files output from TICRA Tools GRASP and " "CHAMP software using numpy etc.", diff --git a/src/graspfile/__init__.py b/src/graspfile/__init__.py index 40aeddf..42f3a24 100644 --- a/src/graspfile/__init__.py +++ b/src/graspfile/__init__.py @@ -10,6 +10,6 @@ grid """ -__version__ = '0.3.0' +__version__ = '0.3.1' __all__ = ['cut', 'grid', 'torfile', 'torparser']