Skip to content

Commit

Permalink
add release command in Makefile
Browse files Browse the repository at this point in the history
I'm the only one that should be able to use it but now it's here

Also 1.0.1 is released
  • Loading branch information
odrling committed Jun 30, 2017
1 parent 5f20ddd commit 2350fd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help clean dev doc format install test
.PHONY: help clean dev doc format install test release

help:
@echo "Please use \`make <target>\` where <target> is one of"
Expand Down Expand Up @@ -36,3 +36,6 @@ test:
flake8
py.test --cov=peony --cov-report term-missing tests

release:
python3 setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion peony/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__author_email__ = "[email protected]"
__url__ = "https://github.com/odrling/peony-twitter"

__version__ = "1.0.0"
__version__ = "1.0.1"

__license__ = "MIT License"

Expand Down

0 comments on commit 2350fd2

Please sign in to comment.