From 066972bd5bc017b94c7fcf8686b535e206b01f04 Mon Sep 17 00:00:00 2001 From: Paul Grimes Date: Wed, 18 Mar 2020 15:31:22 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.1.0?= 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 d9ace0a..f82482d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True diff --git a/README.rst b/README.rst index 3f8c1ec..cc33323 100644 --- a/README.rst +++ b/README.rst @@ -30,9 +30,9 @@ Overview :alt: Coverage Status :target: https://codecov.io/github/PaulKGrimes/python-graspfile -.. |commits-since| image:: https://img.shields.io/github/commits-since/PaulKGrimes/python-graspfile/v0.0.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/PaulKGrimes/python-graspfile/v0.1.0.svg :alt: Commits since latest release - :target: https://github.com/PaulKGrimes/python-graspfile/compare/v0.0.1...master + :target: https://github.com/PaulKGrimes/python-graspfile/compare/v0.1.0...master diff --git a/docs/conf.py b/docs/conf.py index 0af5ebe..a61e1fd 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.0.1' +version = release = '0.1.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 07febde..333138d 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name='python-graspfile', - version='0.0.1', + version='0.1.0', 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 703fc30..9aef088 100644 --- a/src/graspfile/__init__.py +++ b/src/graspfile/__init__.py @@ -11,6 +11,6 @@ grid """ -__version__ = '0.0.1' +__version__ = '0.1.0' __all__ = ['cut', 'grid']