From 095cf4db559bebc78d967890eb93280d8ceb5a08 Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Wed, 18 Jun 2014 11:22:41 -0700 Subject: [PATCH] 4.1.2 release --- CHANGELOG.md | 5 +++++ src/ClientInterface.php | 2 +- src/Event/RequestEvents.php | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8e3b534..3b530bc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +4.1.2 (2014-06-18) +------------------ + +* Added support for sending payloads with GET requests + 4.1.1 (2014-06-08) ------------------ diff --git a/src/ClientInterface.php b/src/ClientInterface.php index fcd761fb..b0e4cba7 100644 --- a/src/ClientInterface.php +++ b/src/ClientInterface.php @@ -13,7 +13,7 @@ use GuzzleHttp\Exception\AdapterException; */ interface ClientInterface extends HasEmitterInterface { - const VERSION = '4.1.1'; + const VERSION = '4.1.2'; /** * Create and return a new {@see RequestInterface} object. diff --git a/src/Event/RequestEvents.php b/src/Event/RequestEvents.php index c62226f3..654e8ad0 100644 --- a/src/Event/RequestEvents.php +++ b/src/Event/RequestEvents.php @@ -138,6 +138,7 @@ final class RequestEvents * * @return array * @throws \InvalidArgumentException if the event config is invalid + * @internal */ public static function convertEventArray( array $options,