From 3530fcb569db93b93a0d4186578a3da6a1da0f6f Mon Sep 17 00:00:00 2001 From: Cory Johns Date: Thu, 27 Apr 2017 17:58:20 -0400 Subject: [PATCH] Update version and changelog for 0.4.1 release (#119) Also add tagging logic to release target in Makefile --- Makefile | 13 ++++++++++--- VERSION | 2 +- docs/changelog.rst | 8 ++++++++ 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 69384ac..c474175 100644 --- 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 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.1 diff --git a/docs/changelog.rst b/docs/changelog.rst index 3a92ac3..1eacdf7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 -- 2.17.1