Skip to content

Commit 561086b

Browse files
committed
Prepare release
1 parent 104f3c4 commit 561086b

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## 0.3.0 - 2016-11-07
4+
5+
### Changed
6+
7+
- Client now require a Stream factory to handle body properly.
48

59
### Fixed
610

711
- Issue with `react/http-client` v0.4.13 about body handling as StreamInterface.
812
This change was introduce in https://github.com/reactphp/http-client/pull/66.
913

10-
### Changed
11-
12-
- Client now require a Stream factory to handle body properly.
13-
1414

1515
## 0.2.2 - 2016-07-18
1616

composer.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "php-http/react-adapter",
3-
"description": "React adapter for PHP-HTTP",
3+
"description": "React HTTP Adapter",
44
"license": "MIT",
55
"keywords": ["http", "react", "httplug"],
66
"homepage": "http://httplug.io",
@@ -22,6 +22,10 @@
2222
"php-http/client-integration-tests": "^0.5.1",
2323
"php-http/message": "^1.0"
2424
},
25+
"provide": {
26+
"php-http/client-implementation": "1.0",
27+
"php-http/async-client-implementation": "1.0"
28+
},
2529
"autoload": {
2630
"psr-4": {
2731
"Http\\Adapter\\React\\": "src/"
@@ -32,17 +36,13 @@
3236
"Http\\Adapter\\React\\Tests\\": "tests/"
3337
}
3438
},
35-
"extra": {
36-
"branch-alias": {
37-
"dev-master": "0.3-dev"
38-
}
39-
},
40-
"provide": {
41-
"php-http/client-implementation": "1.0",
42-
"php-http/async-client-implementation": "1.0"
43-
},
4439
"scripts": {
4540
"test": "vendor/bin/phpunit",
4641
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
42+
},
43+
"extra": {
44+
"branch-alias": {
45+
"dev-master": "0.4-dev"
46+
}
4747
}
4848
}

0 commit comments

Comments
 (0)