From 0e340c3c775600607978eba17272df3f27ccae7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Sun, 14 Jun 2015 12:50:20 +0200 Subject: [PATCH] Prepare v0.3.0 release --- CHANGELOG.md | 22 +++++++++++++++++----- README.md | 2 +- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c405b6d..04d756e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,21 @@ -# CHANGELOG +# Changelog -This file is a manually maintained list of changes for each release. Feel free -to add your changes here when sending pull requests. Also send corrections if -you spot any mistakes. +## 0.3.0 (2015-06-14) + +* Expose Response object in case of HTTP errors + ([#35](https://github.com/clue/php-buzz-react/pull/35)) + +* Feature: Add experimental `Transaction` options via `Browser` + ([#25](https://github.com/clue/php-buzz-react/pull/25)) + +* Feature: Add experimental streaming API + ([#31](https://github.com/clue/php-buzz-react/pull/31)) + +* Feature: Automatically assign a "Content-Length" header for outgoing `Request`s + ([#29](https://github.com/clue/php-buzz-react/pull/29)) + +* Feature: Add `Message::getHeader()`, it is now available on both `Request` and `Response` + ([#28](https://github.com/clue/php-buzz-react/pull/28)) ## 0.2.0 (2014-11-30) @@ -29,4 +42,3 @@ you spot any mistakes. ## 0.0.0 (2013-09-01) * Initial concept - diff --git a/README.md b/README.md index 9f17fc1..5aea7c9 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,7 @@ The recommended way to install this library is [through composer](http://getcomp ```JSON { "require": { - "clue/buzz-react": "~0.2.0" + "clue/buzz-react": "~0.3.0" } } ```