Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed Nov 7, 2016
1 parent 104f3c4 commit 561086b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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/"
Expand All @@ -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"
}
}
}

0 comments on commit 561086b

Please sign in to comment.