From d1e4932033d9d476e4470f002869bfb3dc516da3 Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Wed, 29 May 2013 22:02:44 -0700 Subject: [PATCH] Prepping for the 3.6.0 release --- CHANGELOG.md | 1 + UPGRADING.md | 1 + src/Guzzle/Common/Version.php | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b68ec197..e96d4c5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ CHANGELOG * Guzzle\Http\Message\Header::raw. Use getAll() * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheControl header object instead. +* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess 3.5.0 (2013-05-13) ------------------ diff --git a/UPGRADING.md b/UPGRADING.md index e7cc1954..150f3e3c 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -43,6 +43,7 @@ Other changes: `Guzzle\Service\Command\ArrayCommandInterface`. * Added `Guzzle\Http\Message\RequestInterface::startResponse()` to the RequestInterface to handle injecting a response on a request while the request is still being transferred +* `Guzzle\Service\Command\CommandInterface` now extends from ToArrayInterface and ArrayAccess Marked as deprecated: diff --git a/src/Guzzle/Common/Version.php b/src/Guzzle/Common/Version.php index f1e11e8b..8ba3e2e2 100644 --- a/src/Guzzle/Common/Version.php +++ b/src/Guzzle/Common/Version.php @@ -7,5 +7,5 @@ namespace Guzzle\Common; */ class Version { - const VERSION = '3.5.0'; + const VERSION = '3.6.0'; }