Skip to content

Commit c0ea3e0

Browse files
committed
Bump version: 0.5.0 → 0.5.1
1 parent 0f054e4 commit c0ea3e0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
year = u'2015'
2525
author = u'Ionel Cristian M\u0103rie\u0219'
2626
copyright = '{0}, {1}'.format(year, author)
27-
version = release = u'0.5.0'
27+
version = release = u'0.5.1'
2828

2929
import sphinx_py3doc_enhanced_theme
3030
html_theme = "sphinx_py3doc_enhanced_theme"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
files = setup.py docs/conf.py src/hunter.py
44
commit = True
55
tag = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run(self):
6868

6969
setup(
7070
name='hunter',
71-
version='0.5.0',
71+
version='0.5.1',
7272
license='BSD',
7373
description='Hunter is a flexible code tracing toolkit.',
7474
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),

src/hunter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from colorama import Style
2020
from fields import Fields
2121

22-
__version__ = "0.5.0"
22+
__version__ = "0.5.1"
2323
__all__ = 'Q', 'When', 'And', 'Or', 'CodePrinter', 'Debugger', 'VarsPrinter', 'trace', 'stop'
2424

2525
DEFAULT_MIN_FILENAME_ALIGNMENT = 30

0 commit comments

Comments
 (0)