diff --git a/CHANGELOG.md b/CHANGELOG.md index d76124f..bedc311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,16 @@ # Change Log -## [Unreleased] +## 0.3.0 - 2016-11-07 + +### Changed + +- Client now require a Stream factory to handle body properly. ### Fixed - Issue with `react/http-client` v0.4.13 about body handling as StreamInterface. This change was introduce in https://github.com/reactphp/http-client/pull/66. -### Changed - -- Client now require a Stream factory to handle body properly. - ## 0.2.2 - 2016-07-18 diff --git a/composer.json b/composer.json index 7a4e27a..12fddbf 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "php-http/react-adapter", - "description": "React adapter for PHP-HTTP", + "description": "React HTTP Adapter", "license": "MIT", "keywords": ["http", "react", "httplug"], "homepage": "http://httplug.io", @@ -22,6 +22,10 @@ "php-http/client-integration-tests": "^0.5.1", "php-http/message": "^1.0" }, + "provide": { + "php-http/client-implementation": "1.0", + "php-http/async-client-implementation": "1.0" + }, "autoload": { "psr-4": { "Http\\Adapter\\React\\": "src/" @@ -32,17 +36,13 @@ "Http\\Adapter\\React\\Tests\\": "tests/" } }, - "extra": { - "branch-alias": { - "dev-master": "0.3-dev" - } - }, - "provide": { - "php-http/client-implementation": "1.0", - "php-http/async-client-implementation": "1.0" - }, "scripts": { "test": "vendor/bin/phpunit", "test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml" + }, + "extra": { + "branch-alias": { + "dev-master": "0.4-dev" + } } }