1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-03-14 19:29:49 +01:00

4.1.4 release

This commit is contained in:
Michael Dowling 2014-07-22 17:52:39 -07:00
parent f74931ee9f
commit 5ae164dae6
2 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,17 @@
CHANGELOG
=========
4.1.4 (2014-07-22)
------------------
* Fixed a bug that caused multi-part POST requests with more than one field to
serialize incorrectly.
* Paths can now be set to "0"
* `ResponseInterface::xml` now accepts a `libxml_options` option and added a
missing default argument that was required when parsing XML response bodies.
* A `save_to` stream is now created lazily, which means that files are not
created on disk unless a request succeeds.
4.1.3 (2014-07-15)
------------------

View File

@ -13,7 +13,7 @@ use GuzzleHttp\Exception\AdapterException;
*/
interface ClientInterface extends HasEmitterInterface
{
const VERSION = '4.1.3';
const VERSION = '4.1.4';
/**
* Create and return a new {@see RequestInterface} object.