Skip to content

Commit

Permalink
Prepare 0.2.0dev release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmax committed Jun 24, 2016
1 parent a724332 commit 7699628
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .cookiecutterrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ cookiecutter:
use_cython: y
use_pypi_deployment_with_travis: n
use_pytest: y
version: 0.1.0
version: 0.2.0dev
year: '2016'
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
History
=======

0.2.0dev
------------------

* TODO


0.1.2 (2016-06-24)
------------------

* Documentation updates.

0.1.1 (2016-06-23)
------------------

Expand Down
52 changes: 29 additions & 23 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
[bumpversion]
# Release procedure
# 1. <major|minor|patch> adds dev suffix
# 2. <release> removes dev suffix.
current_version = 0.2.0dev
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>dev)?
serialize =
{major}.{minor}.{patch}{release}
{major}.{minor}.{patch}
{major}.{minor}.{patch}{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = placeholder
values =
dev
placeholder
values =
dev
placeholder

[bumpversion:file:setup.py]
search = version='{current_version}'
Expand All @@ -25,37 +28,40 @@ replace = version='{new_version}'
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bumpversion:file:.cookiecutterrc]
search = version: {current_version}
replace = version: {new_version}

[flake8]
exclude = docs, tests
max-line-length = 120

[pytest]
norecursedirs =
.*
dist
build
python_files =
test_*.py
*_test.py
tests.py
ignore =
setup.py
addopts =
-rxEfsw
norecursedirs =
.*
dist
build
python_files =
test_*.py
*_test.py
tests.py
ignore =
setup.py
addopts =
-rxEfsw

[coverage:paths]
source =
src
source =
src

[coverage:run]
branch = true
source =
yammh3
tests
source =
yammh3
tests
parallel = true

[coverage:report]
show_missing = true
precision = 2
omit =

0 comments on commit 7699628

Please sign in to comment.