From 0e2a40a9afc1668d21981fbb173a2685e1fe76db Mon Sep 17 00:00:00 2001 From: Nicolas Couture Date: Sun, 15 Jan 2017 16:56:41 +0000 Subject: [PATCH] bumping version number, adding Makefile target - adding make release (twine upload for sdist, and bdist_wheel) --- Makefile | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 251383a..5155587 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,11 @@ lint: @echo 'Checking code format...' @$(YAPF) --diff --recursive MockSSH.py tests/ examples/ || (st=$$?; echo 'Please run "make fix" to correct the formatting errors.'; exit $$st) +release: clean build upload_release + +upload_release: + -@$(PIP) install twine + @twine upload dist/* test: tests diff --git a/setup.py b/setup.py index 664aff2..1918361 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ LICENSE = 'BSD' -VERSION = '1.4.4' +VERSION = '1.4.5' CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable',