From 2e7530d9bc6f7554e4f56220a33fa4b96a78f912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Wed, 21 Sep 2016 20:29:16 +0200 Subject: [PATCH] Bumped to 0.6.1 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c2f265f..01dc59d 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,10 @@ clean: @docker ps -a | awk '/$(REPO)\/$(NAME)/{ split($$2, vers, "-"); if(vers[1] != "${VERSION}"){ print $$1;}}' | xargs docker rm 2>/dev/null|| true @docker images | awk '/$(REPO)\/$(NAME)/{ split($$2, vers, "-"); if(vers[1] != "${VERSION}"){ print $$1":"$$2;}}' | xargs docker rmi 2>/dev/null|| true +upload_git: + git commit -a + git tag ${VERSION} + git push --tags origin master pip_upload: python setup.py sdist upload ;