From 9d06ff1c959e4d5991db80c1490615951f1c09e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Andersson?= Date: Sun, 23 Aug 2015 21:42:54 +0800 Subject: [PATCH] Bump to version 0.7.1 and add change log --- CHANGELOG.rst | 31 +++++++++++++++++++++++++++++++ gocd/__init__.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..43b7270 --- /dev/null +++ b/CHANGELOG.rst @@ -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 diff --git a/gocd/__init__.py b/gocd/__init__.py index daaa93f..e4e5eaa 100644 --- a/gocd/__init__.py +++ b/gocd/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -__version__ = '0.7.0.2' +__version__ = '0.7.1' __all__ = ['Server'] from .server import Server