Skip to content

Commit

Permalink
feat(version): bump to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Dec 8, 2016
1 parent cc60773 commit 88e2631
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 15 deletions.
35 changes: 21 additions & 14 deletions History.rst
Original file line number Diff line number Diff line change
@@ -1,31 +1,38 @@
History
=======

0.1.3 (2016-12-08)
0.1.4 / 2016-12-08
------------------

- fix(core): several bug fixes.
- feat(core): add pending features and major refactors.
- feat(matchers): use ``unittest.TestCase`` matching engine by default.
* refactor(README): minor changes
* fix(setup.py): lint error
* fix(#32): use explicit encoding while reading files in setup.py

0.1.2 (2016-12-01)
0.1.3 / 2016-12-08
------------------

- fix(matchers): runtime missing variable.
* fix(core): several bug fixes.
* feat(core): add pending features and major refactors.
* feat(matchers): use ``unittest.TestCase`` matching engine by default.

0.1.1 (2016-12-01)
0.1.2 / 2016-12-01
------------------

- fix: Python 2 dictionary iteration syntax.
- feat(docs): add more examples.
- fix(matchers): better regular expression comparison support.
* fix(matchers): runtime missing variable.

0.1.0 (2016-11-30)
0.1.1 / 2016-12-01
------------------

- First version (still beta)
* fix: Python 2 dictionary iteration syntax.
* feat(docs): add more examples.
* fix(matchers): better regular expression comparison support.

0.1.0-rc.1 (2016-11-27)
0.1.0 / 2016-11-30
------------------

* First version (still beta)

0.1.0-rc.1 / 2016-11-27
-----------------------

- First release candidate version (still beta)
* First release candidate version (still beta)
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ bump:
bump-minor:
@bumpversion --commit --tag --current-version $(version) minor pook/__init__.py --allow-dirty

history:
@git changelog --tag $(version)

clean:
@echo "$(OK_COLOR)==> Cleaning up files that are already in .gitignore...$(NO_COLOR)"
@for pattern in `cat .gitignore`; do find . -name "*/$$pattern" -delete; done
Expand Down
2 changes: 1 addition & 1 deletion pook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
__license__ = 'MIT'

# Current version
__version__ = '0.1.3'
__version__ = '0.1.4'

0 comments on commit 88e2631

Please sign in to comment.