1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-18 05:48:15 +01:00

Prepping for the 3.6.0 release

This commit is contained in:
Michael Dowling 2013-05-29 22:02:44 -07:00
parent 4fee72e77a
commit d1e4932033
3 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,7 @@ CHANGELOG
* Guzzle\Http\Message\Header::raw. Use getAll() * Guzzle\Http\Message\Header::raw. Use getAll()
* Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object
instead. instead.
* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess
3.5.0 (2013-05-13) 3.5.0 (2013-05-13)
------------------ ------------------

View File

@ -43,6 +43,7 @@ Other changes:
`Guzzle\Service\Command\ArrayCommandInterface`. `Guzzle\Service\Command\ArrayCommandInterface`.
* Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response * Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response
on a request while the request is still being transferred on a request while the request is still being transferred
* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess
Marked as deprecated: Marked as deprecated:

View File

@ -7,5 +7,5 @@ namespace Guzzle\Common;
*/ */
class Version class Version
{ {
const VERSION = '3.5.0'; const VERSION = '3.6.0';
} }