Skip to content

Commit 4a5ff61

Browse files
committed
Bump version: 2.0.0 → 2.0.1
1 parent 1698d12 commit 4a5ff61

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.0.0
2+
current_version = 2.0.1
33
commit = True
44
tag = True
55

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ Overview
5757
:alt: PyPI Package latest release
5858
:target: https://pypi.python.org/pypi/hunter
5959

60-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v2.0.0.svg
60+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-hunter/v2.0.1.svg
6161
:alt: Commits since latest release
62-
:target: https://github.com/ionelmc/python-hunter/compare/v2.0.0...master
62+
:target: https://github.com/ionelmc/python-hunter/compare/v2.0.1...master
6363

6464
.. |wheel| image:: https://img.shields.io/pypi/wheel/hunter.svg
6565
:alt: PyPI Wheel
@@ -146,7 +146,7 @@ Custom actions
146146

147147
The tracer allow custom actions like ``CallPrinter`` or ``VarsPrinter``.
148148

149-
With ``CallPrinter`` (added in `hunter 1.2.0`, will be the default action in `2.0.0`):
149+
With ``CallPrinter`` (added in `hunter 1.2.0`, will be the default action in `2.0.1`):
150150

151151
.. sourcecode:: python
152152

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
year = '2015-2017'
2727
author = 'Ionel Cristian Mărieș'
2828
copyright = '{0}, {1}'.format(year, author)
29-
version = release = '2.0.0'
29+
version = release = '2.0.1'
3030

3131
pygments_style = 'trac'
3232
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _unavailable(self, e):
116116

117117
setup(
118118
name='hunter',
119-
version='2.0.0',
119+
version='2.0.1',
120120
license='BSD',
121121
description='Hunter is a flexible code tracing toolkit.',
122122
long_description='%s\n%s' % (

src/hunter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from .predicates import Query
3232
from .tracer import Tracer
3333

34-
__version__ = "2.0.0"
34+
__version__ = "2.0.1"
3535
__all__ = (
3636
'And',
3737
'CallPrinter',

0 commit comments

Comments
 (0)