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 0a0b414 commit 9d06ff1
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
==========
Change Log
==========

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

Changed
-------

* Change values that makes a request into a POST request:

- Any string (even empty)
- Any dict (even empty)
- True (which converts into an empty string)

This is a bug fix that came about because of differences between
different Python versions, 2.6 handled empty dicts differently in
urllib2 compared to 2.7, see `pr #2`_ for details.

Thanks to @henriquegemignani for reporting and providing a fix!

.. _`pr #2`: https://github.com/gaqzi/py-gocd/pull/2

`0.7.0.2`_ - 2015-08-09
=======================

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

.. _`0.7.1`: https://github.com/gaqzi/py-gocd/compare/v0.7.0.2...v0.7.1
.. _`0.7.0.2`: https://github.com/gaqzi/py-gocd/releases/tag/v0.7.0.2
2 changes: 1 addition & 1 deletion gocd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
__version__ = '0.7.0.2'
__version__ = '0.7.1'
__all__ = ['Server']

from .server import Server

0 comments on commit 9d06ff1

Please sign in to comment.