Skip to content

Commit

Permalink
Bump version: 2.0.1 → 2.0.2
Browse files Browse the repository at this point in the history
ionelmc committed Nov 24, 2017
1 parent 3d144dc commit 0a37b15
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.1
current_version = 2.0.2
commit = True
tag = True

6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -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 = ['.']
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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' % (
2 changes: 1 addition & 1 deletion src/hunter/__init__.py
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
from .predicates import Query
from .tracer import Tracer

__version__ = "2.0.1"
__version__ = "2.0.2"
__all__ = (
'And',
'CallPrinter',

0 comments on commit 0a37b15

Please sign in to comment.