Skip to content

Commit b1871a5

Browse files
committed
Bump to version 0.7.1 and add change log
1 parent e62cea5 commit b1871a5

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

CHANGELOG.rst

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
==========
2+
Change Log
3+
==========
4+
5+
`0.7.1`_ - 2015-08-23
6+
=====================
7+
8+
Changed
9+
-------
10+
11+
* Changed to depend on version >= 0.7.1 of gocd because of bug fixes.
12+
For more info see the `release notes`_ for py-gocd.
13+
14+
.. _`release notes`: https://github.com/gaqzi/py-gocd/releases/tag/v.0.7.1
15+
16+
`0.7.0.3`_ - 2015-08-11
17+
=======================
18+
19+
Nothing much to say here, initial public release. :)
20+
21+
.. _`0.7.1`: https://github.com/gaqzi/gocd-cli/compare/v0.7.0.3...v0.7.1
22+
.. _`0.7.0.3`: https://github.com/gaqzi/gocd-cli/releases/tag/v0.7.0.3

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ clean-coverage-html:
3636
clean: clean-pyc clean-build clean-coverage-html
3737

3838
lint-rst:
39-
rst-lint README.rst
39+
rst-lint README.rst CHANGELOG.rst
4040

4141
lint-pep8:
4242
flake8 gocd_cli tests

gocd_cli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__import__('pkg_resources').declare_namespace(__name__)
22

3-
__version__ = '0.7.0.3'
3+
__version__ = '0.7.1'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def version():
4545
cmdclass={'test': PyTest},
4646
scripts=('bin/gocd',),
4747
install_requires=[
48-
'gocd>=0.7,<1.0',
48+
'gocd>=0.7.1,<1.0',
4949
],
5050
tests_require=[
5151
'pytest',

test-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gocd>=0.7,<1.0
1+
gocd>=0.7.1,<1.0
22
tox
33
mock==1.0.1
44
pytest

0 commit comments

Comments
 (0)