Skip to content

Commit 1eeeb71

Browse files
committed
Bump version: 0.1.0 → 0.2.0
1 parent c7cc06a commit 1eeeb71

4 files changed

Lines changed: 46 additions & 73 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.1.0'
27+
version = release = u'0.2.0'
2828

2929
import sphinx_py3doc_enhanced_theme
3030
html_theme = "sphinx_py3doc_enhanced_theme"

setup.cfg

Lines changed: 43 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
[bumpversion]
2+
current_version = 0.2.0
3+
files = setup.py docs/conf.py src/hunter.py
4+
commit = True
5+
tag = True
6+
17
[bdist_wheel]
28
universal = 1
39

@@ -8,79 +14,46 @@ release = register clean --all sdist bdist_wheel
814
max-line-length = 140
915
exclude = tests/*,*/migrations/*,*/south_migrations/*
1016

11-
[bumpversion]
12-
current_version = 0.1.0
13-
files = setup.py docs/conf.py src/hunter.py
14-
commit = True
15-
tag = True
16-
1717
[pytest]
18-
norecursedirs =
19-
.git
20-
.tox
21-
dist
22-
build
23-
south_migrations
24-
migrations
25-
python_files =
26-
test_*.py
27-
*_test.py
28-
tests.py
29-
addopts =
30-
-rxEfs
31-
--strict
32-
--ignore=docs/conf.py
33-
--ignore=setup.py
34-
--ignore=ci
35-
--doctest-modules
36-
--doctest-glob=\*.rst
37-
--tb=short
18+
norecursedirs =
19+
.git
20+
.tox
21+
dist
22+
build
23+
south_migrations
24+
migrations
25+
python_files =
26+
test_*.py
27+
*_test.py
28+
tests.py
29+
addopts =
30+
-rxEfs
31+
--strict
32+
--ignore=docs/conf.py
33+
--ignore=setup.py
34+
--ignore=ci
35+
--doctest-modules
36+
--doctest-glob=\*.rst
37+
--tb=short
3838

3939
[isort]
40-
force_single_line=True
41-
line_length=120
42-
known_first_party=hunter
43-
default_section=THIRDPARTY
44-
forced_separate=test_hunter
40+
force_single_line = True
41+
line_length = 120
42+
known_first_party = hunter
43+
default_section = THIRDPARTY
44+
forced_separate = test_hunter
4545

4646
[matrix]
47-
# This is the configuration for the `./bootstrap.py` script.
48-
# It generates `.travis.yml`, `tox.ini` and `appveyor.yml`.
49-
#
50-
# Syntax: [alias:] value [!variable[glob]] [&variable[glob]]
51-
#
52-
# alias:
53-
# - is used to generate the tox environment
54-
# - it's optional
55-
# - if not present the alias will be computed from the `value`
56-
# value:
57-
# - a value of "-" means empty
58-
# !variable[glob]:
59-
# - exclude the combination of the current `value` with
60-
# any value matching the `glob` in `variable`
61-
# - can use as many you want
62-
# &variable[glob]:
63-
# - only include the combination of the current `value`
64-
# when there's a value matching `glob` in `variable`
65-
# - can use as many you want
66-
67-
python_versions =
68-
2.6
69-
2.7
70-
3.3
71-
3.4
72-
pypy
73-
74-
dependencies =
75-
# 1.4: Django==1.4.16 !python_versions[3.*]
76-
# 1.5: Django==1.5.11
77-
# 1.6: Django==1.6.8
78-
# 1.7: Django==1.7.1 !python_versions[2.6]
79-
# Deps commented above are provided as examples. That's what you would use in a Django project.
80-
81-
coverage_flags =
82-
: true
83-
nocover: false
47+
python_versions =
48+
2.6
49+
2.7
50+
3.3
51+
3.4
52+
pypy
53+
dependencies =
54+
coverage_flags =
55+
: true
56+
nocover: false
57+
environment_variables =
58+
-
8459

85-
environment_variables =
86-
-

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.1.0',
53+
version='0.2.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
@@ -14,7 +14,7 @@
1414
from colorama import AnsiToWin32, Fore, Style
1515

1616

17-
__version__ = "0.1.0"
17+
__version__ = "0.2.0"
1818
__all__ = 'Q', 'When', 'And', 'Or', 'CodePrinter', 'Debugger', 'VarsPrinter', 'trace', 'stop'
1919

2020
DEFAULT_MIN_FILENAME_ALIGNMENT = 30

0 commit comments

Comments
 (0)