diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f40ad9e1..f9ab28216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,8 @@ CHANGELOG * Bug fix: Fixed bug in `Guzzle\Http\Message\Response` where wrapping quotes were stripped from `getEtag()` * BC: Removed `Guzzle\Http\Utils` class * BC: Setting a service description on a client will no longer modify the client's command factories. -* BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request' curl options using the - 'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io' +* BC: Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using + the 'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io' * BC: `Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getSteamType()` are no longer converted to lowercase * Operation parameter objects are now lazy loaded internally diff --git a/UPGRADING.md b/UPGRADING.md index bff5ec24b..60222d004 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1,6 +1,26 @@ Guzzle Upgrade Guide ==================== +3.2 to 3.3 +---------- + +### Response::getEtag() quote stripping removed + +`Guzzle\Http\Message\Response::getEtag()` no longer strips quotes around the ETag response header + +### Removed `Guzzle\Http\Utils` + +The `Guzzle\Http\Utils` class was removed. This class was only used for testing. + +### Stream wrapper and type + +`Guzzle\Stream\Stream::getWrapper()` and `Guzzle\Stream\Stream::getSteamType()` are no longer converted to lowercase. + +### curl.emit_io became emit_io + +Emitting IO events from a RequestMediator is now a parameter that must be set in a request's curl options using the +'emit_io' key. This was previously set under a request's parameters using 'curl.emit_io' + 3.1 to 3.2 ---------- diff --git a/src/Guzzle/Common/Version.php b/src/Guzzle/Common/Version.php index ea131e99b..de15c5d53 100644 --- a/src/Guzzle/Common/Version.php +++ b/src/Guzzle/Common/Version.php @@ -7,5 +7,5 @@ */ class Version { - const VERSION = '3.2.0'; + const VERSION = '3.3.0'; }