Skip to content

Commit 9932cf1

Browse files
committed
Bump version: 0.5.1 → 0.6.0
1 parent e58b7a5 commit 9932cf1

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[bumpversion]
2-
current_version = 0.5.1
2+
current_version = 0.6.0
33
commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7+
78
[bumpversion:file:docs/conf.py]
9+
810
[bumpversion:file:src/hunter.py]
11+

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
year = '2015'
2525
author = 'Ionel Cristian Mărieș'
2626
copyright = '{0}, {1}'.format(year, author)
27-
version = release = '0.5.1'
27+
version = release = '0.6.0'
2828
import sphinx_py3doc_enhanced_theme
2929
html_theme = "sphinx_py3doc_enhanced_theme"
3030
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]

setup.py

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

8383
setup(
8484
name='hunter',
85-
version='0.5.1',
85+
version='0.6.0',
8686
license='BSD',
8787
description='Hunter is a flexible code tracing toolkit.',
8888
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
@@ -20,7 +20,7 @@
2020
from fields import Fields
2121
from six import string_types
2222

23-
__version__ = "0.5.1"
23+
__version__ = "0.6.0"
2424
__all__ = 'Q', 'When', 'And', 'Or', 'CodePrinter', 'Debugger', 'VarsPrinter', 'trace', 'stop'
2525

2626
DEFAULT_MIN_FILENAME_ALIGNMENT = 40

0 commit comments

Comments
 (0)