Skip to content

Commit

Permalink
feat(version): pre-release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Nov 29, 2016
1 parent 41f1137 commit eb56fab
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ var/
*.egg
*.tar.gz

# OS specific
.DS_Store

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
Expand Down
5 changes: 5 additions & 0 deletions History.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
History
=======

0.1.4 (2016-11-28)
------------------

- fix(#24): explicitly pass loop instance to ``asyncio.wait`` (b76d128).

0.1.3 (2016-10-27)
------------------

Expand Down
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ coverage:
@coverage run --source paco -m py.test
@coverage report

bump:
@bumpversion --commit --tag --current-version $(version) patch paco/__init__.py --allow-dirty

bump-minor:
@bumpversion --commit --tag --current-version $(version) minor paco/__init__.py --allow-dirty

tag:
@echo "$(OK_COLOR)==> Creating tag $(version)...$(NO_COLOR)"
@git tag -a "v$(version)" -m "Version $(version)"
Expand All @@ -36,7 +42,7 @@ 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

release: clean publish
release: clean bump publish
@echo "$(OK_COLOR)==> Exporting to $(filename)...$(NO_COLOR)"
@tar czf $(filename) paco setup.py README.rst LICENSE

Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ pytest-flakes~=1.0.1
Sphinx~=1.4.8
sphinx-rtd-theme~=0.1.9
python-coveralls~=2.9.0
bumpversion~=0.5.3

0 comments on commit eb56fab

Please sign in to comment.