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 7, 2016
1 parent b49d0ad commit f3b6f99
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 91 deletions.
91 changes: 1 addition & 90 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,96 +17,6 @@ Status
:target: https://readthedocs.org/projects/bootstrap-py/?badge=latest
:alt: Documentation Status

Notes
=====

v0.4.6
------

Generated package with v0.4.5 or less that has bugs .travis.yml configuration file.
Modify the follows manually.::

diff --git a/.travis.yml b/.travis.yml
index ab128da..600125e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,11 @@ after_success:
- coveralls --verbose
matrix:
+ allow_failures:
+ - env: TOX_ENV=py27
+ - env: TOX_ENV=py33
+ - env: TOX_ENV=py34
+ - env: TOX_ENV=pypy
include:
- python: 3.5
- env: TOX_ENV=py35
+ - python: 3.5
+ env: TOX_ENV=py35

v0.4.5
------

Generated package with v0.4.4 or less that has bugs tox.ini configuration file.
Modify the follows manually.

* Fixes `your_package_name` with snake case. Modify the follows manually.::

diff --git a/tox.ini b/tox.ini
index a9d823f..db825cc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -49,7 +49,7 @@ basepython = pypy
[testenv:pep257]
deps=
pep257
-commands = pep257 bootstrap_py
+commands = pep257 your_package_name
basepython = python3.5
[testenv:docs]


v0.4.4
------

Generated package with v0.4.3 or less that has bugs pre-commit hook script.
Modify the follows manually.::

$ chmod +x utils/pre-commit
$ ln -s ../../utils/pre-commit .git/hooks/pre-commit


v0.4.2
------

Genarated package with v0.4.1 or less that has bugs Sphinx documentation.
Modify the follows manually.

* Fixes ``docs/source/index.rst``::

diff --git a/docs/source/index.rst b/docs/source/index.rst
index b3404ac..d8bdc83 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -16,8 +16,8 @@ Contents:
CHANGELOG
- Indices and tables
-===================
+Indices and tables
+==================
* :ref:`genindex`
* :ref:`modindex`

* Renames ``docs/source/README`` to ``docs/source/README.rst``.
* Fixes documentation ``version`` in ``docs/source/conf.py``.
* Fixes ``auth_email``, ``url`` in ``setup.py``.


Requirements
============

Expand All @@ -128,6 +38,7 @@ Features

* Generating documentation automatically with the `Sphinx <http://www.sphinx-doc.org/en/stable/>`_.
* Configuration Git repository, initial commit.
* Generate sample code using ``--with-samples`` option.

Usage
=====
Expand Down
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.4.8'
__version__ = '0.5.0'
80 changes: 80 additions & 0 deletions docs/source/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
ChangeLog
=========

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

* Adds ``--with-samples`` options; generating sample code.
* Fixes bugs module name when package name includes hyphen.
* Fixes comparing verson bug in updatable for Python3.
* Some refactorings.

0.4.8 (2016-04-25)
------------------

Expand All @@ -18,16 +26,63 @@ ChangeLog

* Fixes .travis.yml template.

Generated package with v0.4.5 or less that has bugs .travis.yml configuration file.
Modify the follows manually.::

diff --git a/.travis.yml b/.travis.yml
index ab128da..600125e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,11 @@ after_success:
- coveralls --verbose
matrix:
+ allow_failures:
+ - env: TOX_ENV=py27
+ - env: TOX_ENV=py33
+ - env: TOX_ENV=py34
+ - env: TOX_ENV=pypy
include:
- python: 3.5
- env: TOX_ENV=py35
+ - python: 3.5
+ env: TOX_ENV=py35

0.4.5 (2016-04-06)
------------------

* Fixes tox.ini template.

Generated package with v0.4.4 or less that has bugs tox.ini configuration file.
Modify the follows manually.

* Fixes `your_package_name` with snake case. Modify the follows manually.::

diff --git a/tox.ini b/tox.ini
index a9d823f..db825cc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -49,7 +49,7 @@ basepython = pypy
[testenv:pep257]
deps=
pep257
-commands = pep257 bootstrap_py
+commands = pep257 your_package_name
basepython = python3.5
[testenv:docs]

0.4.4 (2016-04-05)
------------------

* Adds symlink to pre-commit hook.

Generated package with v0.4.3 or less that has bugs pre-commit hook script.
Modify the follows manually.::

$ chmod +x utils/pre-commit
$ ln -s ../../utils/pre-commit .git/hooks/pre-commit

0.4.3 (2016-04-04)
------------------

Expand All @@ -38,6 +93,31 @@ ChangeLog

* Fixes configiratuon version, release.
* Fixes url, author_email in setup.py.

Genarated package with v0.4.1 or less that has bugs Sphinx documentation.
Modify the follows manually.

* Fixes ``docs/source/index.rst``::

diff --git a/docs/source/index.rst b/docs/source/index.rst
index b3404ac..d8bdc83 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -16,8 +16,8 @@ Contents:
CHANGELOG
- Indices and tables
-===================
+Indices and tables
+==================
* :ref:`genindex`
* :ref:`modindex`

* Renames ``docs/source/README`` to ``docs/source/README.rst``.
* Fixes documentation ``version`` in ``docs/source/conf.py``.
* Fixes ``auth_email``, ``url`` in ``setup.py``.

0.4.1 (2016-03-07)
------------------
Expand Down

0 comments on commit f3b6f99

Please sign in to comment.