Skip to content

Commit ecbef14

Browse files
committed
Prepare v0.6.0 release
1 parent 799e94f commit ecbef14

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

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

3+
## 0.6.0 (2016-04-07)
4+
5+
* Feature / BC break: Update SocketClient to v0.7 or v0.6
6+
(#16 by @clue)
7+
8+
* Improve test suite by adding PHPUnit to require-dev
9+
(#15 by @clue)
10+
311
## 0.5.0 (2016-06-01)
412

513
* BC break: Change $retries to $tries

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $connector->connect('www.google.com:80')->then(function ($stream) {
4848
Because everything uses the same simple API, the resulting `Connector` classes can be easily interchanged
4949
and be used in places that expect the normal `ConnectorInterface`. This can be used to stack them into each other,
5050
like using [timeouts](#timeout) for TCP connections, [delaying](#delay) SSL/TLS connections,
51-
[retrying](#repeating--retrying) failed connection attemps, [randomly](#random) picking a `Connector` or
51+
[retrying](#repeat) failed connection attemps, [randomly](#random) picking a `Connector` or
5252
any combination thereof.
5353

5454
## Usage
@@ -203,7 +203,7 @@ The recommended way to install this library is [through Composer](http://getcomp
203203
This will install the latest supported version:
204204

205205
```bash
206-
$ composer require clue/connection-manager-extra:^0.5
206+
$ composer require clue/connection-manager-extra:^0.6
207207
```
208208

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clue/connection-manager-extra",
3-
"description": "Extra decorators for creating async TCP/IP connections, built on top of React PHP's SocketClient",
3+
"description": "Extra decorators for creating async TCP/IP connections, built on top of ReactPHP's SocketClient",
44
"keywords": ["SocketClient", "network", "connection", "timeout", "delay", "reject", "repeat", "retry", "random", "acl", "firewall", "ReactPHP"],
55
"homepage": "https://github.com/clue/php-connection-manager-extra",
66
"license": "MIT",

0 commit comments

Comments
 (0)