Skip to content

Commit

Permalink
Prepping for 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Mar 4, 2013
1 parent d9ffba0 commit d8f28e9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
20 changes: 20 additions & 0 deletions 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
----------

Expand Down
2 changes: 1 addition & 1 deletion src/Guzzle/Common/Version.php
Expand Up @@ -7,5 +7,5 @@
*/
class Version
{
const VERSION = '3.2.0';
const VERSION = '3.3.0';
}

0 comments on commit d8f28e9

Please sign in to comment.