Skip to content

Commit

Permalink
Bump to version 0.7.1 and add change log
Browse files Browse the repository at this point in the history
  • Loading branch information
gaqzi committed Aug 23, 2015
1 parent e62cea5 commit b1871a5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
==========
Change Log
==========

`0.7.1`_ - 2015-08-23
=====================

Changed
-------

* Changed to depend on version >= 0.7.1 of gocd because of bug fixes.
For more info see the `release notes`_ for py-gocd.

.. _`release notes`: https://github.com/gaqzi/py-gocd/releases/tag/v.0.7.1

`0.7.0.3`_ - 2015-08-11
=======================

Nothing much to say here, initial public release. :)

.. _`0.7.1`: https://github.com/gaqzi/gocd-cli/compare/v0.7.0.3...v0.7.1
.. _`0.7.0.3`: https://github.com/gaqzi/gocd-cli/releases/tag/v0.7.0.3
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ clean-coverage-html:
clean: clean-pyc clean-build clean-coverage-html

lint-rst:
rst-lint README.rst
rst-lint README.rst CHANGELOG.rst

lint-pep8:
flake8 gocd_cli tests
Expand Down
2 changes: 1 addition & 1 deletion gocd_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__import__('pkg_resources').declare_namespace(__name__)

__version__ = '0.7.0.3'
__version__ = '0.7.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def version():
cmdclass={'test': PyTest},
scripts=('bin/gocd',),
install_requires=[
'gocd>=0.7,<1.0',
'gocd>=0.7.1,<1.0',
],
tests_require=[
'pytest',
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gocd>=0.7,<1.0
gocd>=0.7.1,<1.0
tox
mock==1.0.1
pytest
Expand Down

0 comments on commit b1871a5

Please sign in to comment.