Skip to content

Commit

Permalink
Extent clean and andd new_release
Browse files Browse the repository at this point in the history
  • Loading branch information
konrad committed Jul 14, 2016
1 parent b0a3f53 commit 23ce08d
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,24 @@ md_to_html:
pandoc README.md > README.html

clean:
rm -f README.html *~
rm -rf README.html *~ build COVERnant.egg-info dist

pylint:
pylint bin/bin covernantlib/* tests/*

new_release:
@echo "* Create/checkout a release branch"
@echo " git branch release_v0.X"
@echo " git checkout release_v0.X"
@echo "* Change bin/covernant"
@echo "* Change setup.py"
@echo "* Change CHANGELOG.txt"
@echo "* Test package creation"
@echo "* make package_to_pypi"
@echo "* git add CHANGELOG.txt bin/covernant setup.py"
@echo "* Commit changes e.g. 'git commit -m \"Set version to 0.X\"'"
@echo "* Tag the commit e.g. 'git tag -a v0.X -m \"version v0.X\"'"
@echo "* Merge release into dev and master"
@echo "* Push it to github: git push"
@echo "* Generate a new release based on this tag at"
@echo " https://github.com/konrad/COVERnant/releases/new"

0 comments on commit 23ce08d

Please sign in to comment.