-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to version 0.7.1 and add change log
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |