Skip to content

Commit

Permalink
Bumps version.
Browse files Browse the repository at this point in the history
Signed-off-by: Kouhei Maeda <mkouhei@palmtb.net>
  • Loading branch information
mkouhei committed May 16, 2016
1 parent 9a9f6d2 commit aaab67a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap_py/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Bootstrap Python package."""
__prog__ = 'bootstrap-py'
__version__ = '0.5.0'
__version__ = '0.5.1'
35 changes: 35 additions & 0 deletions docs/source/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
ChangeLog
=========

0.5.1 (2016-05-17)
------------------

* Adds ``--doctest-modules`` option.
* Fixes pylint option argument.
* Removes doctest exception sample.

Changes follows when enable doctest-modules.::
diff --git a/pytest.ini b/pytest.ini
index 635a7f9..15cc929 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -7,6 +7,7 @@ addopts =
--cov your_package_name
--cov-report=term
--cov-report=html
+ --doctest-modules
pep8ignore =
setup.py ALL
docs/source/conf.py ALL
diff --git a/tox.ini b/tox.ini
index 141d468..b8c1f32 100644
--- a/tox.ini
+++ b/tox.ini
@@ -10,7 +10,7 @@ envlist =
[testenv]
commands =
- py.test --pylint --pylint-rcfile={toxinidir}/.pylintrc
+ py.test --pylint --pylint-rcfile={toxinidir}/.pylintrc your_package_name
[py]
deps=

0.5.0 (2016-05-07)
------------------

Expand Down

0 comments on commit aaab67a

Please sign in to comment.