Skip to content

Commit

Permalink
bump to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyarr committed Jul 3, 2017
1 parent 8c5b871 commit 793ab4d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ Changelog
******************

- default arguments supplied in __init__.py instead of default_settings.py
- version string added
- version string added

1.2.0 (2017-07-03)
******************

- now compatible with python 2.7+
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
flake8:
flake8 --ignore=E501,F401,E128,E402,E731,F821 jenkins_badges

publish:
pip install 'twine>=1.5.0'
package:
rm -rf build dist .egg jenkins_badges.egg-info
python setup.py sdist bdist_wheel

publish:
twine upload dist/*
rm -fr build dist .egg jenkins_badges.egg-info
rm -rf build dist .egg jenkins_badges.egg-info

docs:
cd docs && make html
Expand Down
2 changes: 1 addition & 1 deletion jenkins_badges/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.1"
__version__ = "1.2.0"
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ tag_date = 1

[aliases]
release = egg_info -Db ""

[bdist_wheel]
universal = 1

0 comments on commit 793ab4d

Please sign in to comment.