Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
shyal committed Dec 13, 2016
1 parent c2b411f commit aa6a052
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.15
0.1.16
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.15'
version = '0.1.16'
# The full version, including alpha/beta/rc tags.
release = '0.1.15'
release = '0.1.16'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion hoverpy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def getOS():

dirName = dirname(abspath(__file__))

version = '0.1.15'
version = '0.1.16'
dist_version = '0.9.2'

hoverflyDirectory = join(
Expand Down
18 changes: 15 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@ all:
# ┬─┐┌─┐┬ ┌─┐┌─┐┌─┐┌─┐ ┌─┐┌─┐┌┬┐┌─┐┬ ┬ ┌┬┐┌─┐┌─┐┌┬┐ ┬ ┬┌─┐┬─┐┌─┐┬┌─┐┌┐┌
# ├┬┘├┤ │ ├┤ ├─┤└─┐├┤ ├─┘├─┤ │ │ ├─┤ │ ├┤ └─┐ │ └┐┌┘├┤ ├┬┘└─┐││ ││││
# ┴└─└─┘┴─┘└─┘┴ ┴└─┘└─┘ ┴ ┴ ┴ ┴ └─┘┴ ┴ ┴ └─┘└─┘ ┴ └┘ └─┘┴└─└─┘┴└─┘┘└┘
release_test_patch: clean patch_tag commit push reg_and_upload_to_pypi clean
release_test_patch: clean patch_tag commit push reg_and_upload_to_test_pypi clean

release_test: clean tag commit push reg_and_upload_to_pypi clean
release_patch: clean patch_tag commit push reg_and_upload_to_pypi clean

reg_and_upload_to_pypi: register_test upload_test
release_test: clean tag commit push reg_and_upload_to_test_pypi clean

release: clean tag commit push reg_and_upload_to_pypi clean

reg_and_upload_to_test_pypi: register_test upload_test

reg_and_upload_to_pypi: register upload

patch_tag: semver_patch tag

Expand Down Expand Up @@ -101,9 +107,15 @@ docs: .PHONY
register_test:
python setup.py register -r pypitest

register:
python setup.py register -r pypi

upload_test:
python setup.py sdist upload -r pypitest

upload:
python setup.py sdist upload -r pypi

do_tag:
git tag $(VERSION) -m "Adds a tag so that we can put this on PyPI."

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
except ImportError:
from distutils.core import setup

version = '0.1.15'
version = '0.1.16'

setup(
name='hoverpy',
Expand Down

0 comments on commit aa6a052

Please sign in to comment.