Skip to content

Commit 6ae4fcf

Browse files
committed
Prepare v0.2.0 release
1 parent 10ef934 commit 6ae4fcf

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 0.2.0 (2017-04-10)
4+
5+
* Feature / BC break: Update SocketClient to v0.7 or v0.6 and
6+
use `connect($uri)` instead of `create($host, $port)`
7+
(#8 by @clue)
8+
9+
```php
10+
// old
11+
$connector->create($host, $port)->then(function (Stream $conn) {
12+
$conn->write("…");
13+
});
14+
15+
// new
16+
$connector->connect($uri)->then(function (ConnectionInterface $conn) {
17+
$conn->write("…");
18+
});
19+
```
20+
21+
* Improve test suite by adding PHPUnit to require-dev
22+
(#7 by @clue)
23+
24+
325
## 0.1.0 (2016-11-01)
426

527
* First tagged release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ The recommended way to install this library is [through Composer](http://getcomp
174174
This will install the latest supported version:
175175

176176
```bash
177-
$ composer require clue/http-proxy-react:^0.1
177+
$ composer require clue/http-proxy-react:^0.2
178178
```
179179

180180
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)