Update version and changelog for 0.4.1 release (#119) 0.4.1
authorCory Johns <johnsca@gmail.com>
Thu, 27 Apr 2017 21:58:20 +0000 (17:58 -0400)
committerPete Vander Giessen <petevg@gmail.com>
Thu, 27 Apr 2017 21:58:20 +0000 (17:58 -0400)
Also add tagging logic to release target in Makefile

Makefile
VERSION
docs/changelog.rst

index 69384ac..c474175 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,14 @@ docs: .tox
        $(BIN)/sphinx-build -b html docs/  docs/_build/
        cd docs/_build/ && zip -r docs.zip *
 
-upload: docs
-       $(PY) setup.py sdist upload upload_docs --upload-dir=docs/_build
+release: docs
+       git remote | xargs -L1 git fetch --tags
+       $(PY) setup.py sdist upload
+       git tag ${VERSION}
+       git remote | xargs -L1 git push --tags
+       @echo "Please manually upload docs/_build/docs.zip via the PyPI website"
 
-.PHONY: clean client test docs upload
+upload: release
+
+
+.PHONY: clean client test docs upload release
diff --git a/VERSION b/VERSION
index 1d0ba9e..267577d 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.4.0
+0.4.1
index 3a92ac3..1eacdf7 100644 (file)
@@ -1,6 +1,14 @@
 Change Log
 ----------
 
+0.4.1
+^^^^^
+Wed Apr 27 2017
+
+* Remove VERSION_MAP and rely on facade list from controller (#118)
+* Refactor connection task management to avoid cancels (#117)
+* Refactored login code to better handle redirects (#116)
+
 0.4.0
 ^^^^^
 Wed Apr 19 2017