From b50142958b5ccf33e6b891870e90a47059fe920c Mon Sep 17 00:00:00 2001 From: Paul Grimes Date: Thu, 1 Oct 2020 16:01:24 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.4=20=E2=86=92=200.3.5?= 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 d2e1b95..099eef4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.4 +current_version = 0.3.5 commit = True tag = True diff --git a/README.rst b/README.rst index 62fdc85..212f221 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.4.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/Smithsonian/python-graspfile/v0.3.5.svg :alt: Commits since latest release - :target: https://github.com/Smithsonian/python-graspfile/compare/v0.3.4...master + :target: https://github.com/Smithsonian/python-graspfile/compare/v0.3.5...master diff --git a/docs/conf.py b/docs/conf.py index 3f09e85..dd921ee 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.4' +version = release = '0.3.5' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index cf3659d..407be11 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='python-graspfile', - version='0.3.4', + version='0.3.5', 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 7869b80..b0086f0 100644 --- a/src/graspfile/__init__.py +++ b/src/graspfile/__init__.py @@ -10,6 +10,6 @@ grid """ -__version__ = '0.3.4' +__version__ = '0.3.5' __all__ = ['cut', 'grid', 'plot', 'torfile', 'torparser']