Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Mar 26, 2015
1 parent c7cc06a commit 1eeeb71
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 73 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
year = u'2015'
author = u'Ionel Cristian M\u0103rie\u0219'
copyright = '{0}, {1}'.format(year, author)
version = release = u'0.1.0'
version = release = u'0.2.0'

import sphinx_py3doc_enhanced_theme
html_theme = "sphinx_py3doc_enhanced_theme"
Expand Down
113 changes: 43 additions & 70 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[bumpversion]
current_version = 0.2.0
files = setup.py docs/conf.py src/hunter.py
commit = True
tag = True

[bdist_wheel]
universal = 1

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

[bumpversion]
current_version = 0.1.0
files = setup.py docs/conf.py src/hunter.py
commit = True
tag = True

[pytest]
norecursedirs =
.git
.tox
dist
build
south_migrations
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfs
--strict
--ignore=docs/conf.py
--ignore=setup.py
--ignore=ci
--doctest-modules
--doctest-glob=\*.rst
--tb=short
norecursedirs =
.git
.tox
dist
build
south_migrations
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfs
--strict
--ignore=docs/conf.py
--ignore=setup.py
--ignore=ci
--doctest-modules
--doctest-glob=\*.rst
--tb=short

[isort]
force_single_line=True
line_length=120
known_first_party=hunter
default_section=THIRDPARTY
forced_separate=test_hunter
force_single_line = True
line_length = 120
known_first_party = hunter
default_section = THIRDPARTY
forced_separate = test_hunter

[matrix]
# This is the configuration for the `./bootstrap.py` script.
# It generates `.travis.yml`, `tox.ini` and `appveyor.yml`.
#
# Syntax: [alias:] value [!variable[glob]] [&variable[glob]]
#
# alias:
# - is used to generate the tox environment
# - it's optional
# - if not present the alias will be computed from the `value`
# value:
# - a value of "-" means empty
# !variable[glob]:
# - exclude the combination of the current `value` with
# any value matching the `glob` in `variable`
# - can use as many you want
# &variable[glob]:
# - only include the combination of the current `value`
# when there's a value matching `glob` in `variable`
# - can use as many you want

python_versions =
2.6
2.7
3.3
3.4
pypy

dependencies =
# 1.4: Django==1.4.16 !python_versions[3.*]
# 1.5: Django==1.5.11
# 1.6: Django==1.6.8
# 1.7: Django==1.7.1 !python_versions[2.6]
# Deps commented above are provided as examples. That's what you would use in a Django project.

coverage_flags =
: true
nocover: false
python_versions =
2.6
2.7
3.3
3.4
pypy
dependencies =
coverage_flags =
: true
nocover: false
environment_variables =
-

environment_variables =
-
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def run(self):

setup(
name='hunter',
version='0.1.0',
version='0.2.0',
license='BSD',
description='Hunter is a flexible code tracing toolkit.',
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),
Expand Down
2 changes: 1 addition & 1 deletion src/hunter.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from colorama import AnsiToWin32, Fore, Style


__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = 'Q', 'When', 'And', 'Or', 'CodePrinter', 'Debugger', 'VarsPrinter', 'trace', 'stop'

DEFAULT_MIN_FILENAME_ALIGNMENT = 30
Expand Down

0 comments on commit 1eeeb71

Please sign in to comment.