Skip to content

Commit 6bd139c

Browse files
committed
Bump version: 0.2.1 → 0.3.0
1 parent eaf1605 commit 6bd139c

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.2.1'
27+
version = release = u'0.3.0'
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.2.1
2+
current_version = 0.3.0
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
@@ -50,7 +50,7 @@ def run(self):
5050

5151
setup(
5252
name='hunter',
53-
version='0.2.1',
53+
version='0.3.0',
5454
license='BSD',
5555
description='Hunter is a flexible code tracing toolkit.',
5656
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.2.1"
22+
__version__ = "0.3.0"
2323
__all__ = 'Q', 'When', 'And', 'Or', 'CodePrinter', 'Debugger', 'VarsPrinter', 'trace', 'stop'
2424

2525
DEFAULT_MIN_FILENAME_ALIGNMENT = 30

0 commit comments

Comments
 (0)