Skip to content

Commit c0f5da5

Browse files
committed
Bump version: 0.6.0 → 1.0.0
1 parent 2fa72a8 commit c0f5da5

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.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.6.0
2+
current_version = 1.0.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/__init__.py]
11+

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
year = '2015'
2626
author = 'Ionel Cristian Mărieș'
2727
copyright = '{0}, {1}'.format(year, author)
28-
version = release = '0.6.0'
28+
version = release = '1.0.0'
2929

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _unavailable(self, e):
109109
print('*' * 80)
110110
setup(
111111
name='hunter',
112-
version='0.6.0',
112+
version='1.0.0',
113113
license='BSD',
114114
description='Hunter is a flexible code tracing toolkit.',
115115
long_description='%s\n%s' % (

src/hunter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .predicates import Query
2929
from .tracer import Tracer
3030

31-
__version__ = "0.6.0"
31+
__version__ = "1.0.0"
3232
__all__ = (
3333
'And',
3434
'CodePrinter',

0 commit comments

Comments
 (0)