Skip to content

Commit

Permalink
bumping version number, adding Makefile target
Browse files Browse the repository at this point in the history
  - adding make release (twine upload for sdist, and bdist_wheel)
  • Loading branch information
ncouture committed Jan 15, 2017
1 parent 1080a6a commit 0e2a40a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

LICENSE = 'BSD'

VERSION = '1.4.4'
VERSION = '1.4.5'

CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 0e2a40a

Please sign in to comment.