From 6379add87efa2d7a2fa72768da0e1e2bbbd43c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Tue, 18 Jun 2019 16:07:46 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.0.0=20=E2=86=92=203.0.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/hunter/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b3eeb17..55c25a1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True tag = True diff --git a/README.rst b/README.rst index 9e52892..d3af4a8 100644 --- a/README.rst +++ b/README.rst @@ -39,9 +39,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.org/project/hunter -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v3.0.1.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-hunter/compare/v3.0.0...master + :target: https://github.com/ionelmc/python-hunter/compare/v3.0.1...master .. |wheel| image:: https://img.shields.io/pypi/wheel/hunter.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index a9ae3c4..d26b6b1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,7 +35,7 @@ version = release = get_distribution('hunter').version except Exception: traceback.print_exc() - version = release = '3.0.0' + version = release = '3.0.1' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 1eea182..32ce598 100644 --- a/setup.py +++ b/setup.py @@ -113,7 +113,7 @@ def _unavailable(self, e): use_scm_version={ 'local_scheme': 'dirty-tag', 'write_to': 'src/hunter/_version.py', - 'fallback_version': '3.0.0', + 'fallback_version': '3.0.1', }, license='BSD 2-Clause License', description='Hunter is a flexible code tracing toolkit.', diff --git a/src/hunter/__init__.py b/src/hunter/__init__.py index 7d490a4..b2c982a 100644 --- a/src/hunter/__init__.py +++ b/src/hunter/__init__.py @@ -42,7 +42,7 @@ try: from ._version import version as __version__ except ImportError: - __version__ = '3.0.0' + __version__ = '3.0.1' __all__ = ( 'And',