From 0a37b15363090375533c5656101098168730a3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Fri, 24 Nov 2017 08:09:57 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1=20=E2=86=92=202.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 6 +++--- docs/conf.py | 2 +- setup.py | 2 +- src/hunter/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ddae43b..2830867 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.0.2 commit = True tag = True diff --git a/README.rst b/README.rst index e0c113f..89c080e 100644 --- a/README.rst +++ b/README.rst @@ -57,9 +57,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.python.org/pypi/hunter -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v2.0.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v2.0.2.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-hunter/compare/v2.0.1...master + :target: https://github.com/ionelmc/python-hunter/compare/v2.0.2...master .. |wheel| image:: https://img.shields.io/pypi/wheel/hunter.svg :alt: PyPI Wheel @@ -146,7 +146,7 @@ Custom actions The tracer allow custom actions like ``CallPrinter`` or ``VarsPrinter``. -With ``CallPrinter`` (added in `hunter 1.2.0`, will be the default action in `2.0.1`): +With ``CallPrinter`` (added in `hunter 1.2.0`, will be the default action in `2.0.2`): .. sourcecode:: python diff --git a/docs/conf.py b/docs/conf.py index 678cd67..aab2d57 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2015-2017' author = 'Ionel Cristian Mărieș' copyright = '{0}, {1}'.format(year, author) -version = release = '2.0.1' +version = release = '2.0.2' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 91a8398..9283e5d 100644 --- a/setup.py +++ b/setup.py @@ -116,7 +116,7 @@ def _unavailable(self, e): setup( name='hunter', - version='2.0.1', + version='2.0.2', license='BSD', description='Hunter is a flexible code tracing toolkit.', long_description='%s\n%s' % ( diff --git a/src/hunter/__init__.py b/src/hunter/__init__.py index 1f31b4b..49e1e0d 100644 --- a/src/hunter/__init__.py +++ b/src/hunter/__init__.py @@ -31,7 +31,7 @@ from .predicates import Query from .tracer import Tracer -__version__ = "2.0.1" +__version__ = "2.0.2" __all__ = ( 'And', 'CallPrinter',