From dd4a2e6abcd5f728d2cf1b2c03149df759249799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Mon, 30 May 2016 13:14:20 +0200 Subject: [PATCH] Prepare v0.4.0 release --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- composer.json | 6 +++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b59fbe8..1a28b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.4.0 (2016-05-30) + +* Feature: Add `ConnectionManagerConcurrent` + (#10 by @clue) + +* Feature: Support Promise cancellation for all connectors + (#9 by @clue) + ## 0.3.3 (2016-05-29) * Fix repetitions for `ConnectionManagerRepeat` diff --git a/README.md b/README.md index 3f248ef..091b452 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ The recommended way to install this library is [through Composer](http://getcomp This will install the latest supported version: ```bash -$ composer require clue/connection-manager-extra:^0.3 +$ composer require clue/connection-manager-extra:^0.4 ``` See also the [CHANGELOG](CHANGELOG.md) for more details about version upgrades. diff --git a/composer.json b/composer.json index ea0ab95..8a8c0ab 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "clue/connection-manager-extra", - "description": "Extra decorators for creating async TCP/IP connections built upon react/socket-client", - "keywords": ["SocketClient", "network", "connection", "timeout", "delay", "reject", "repeat", "retry", "random", "acl", "firewall"], + "description": "Extra decorators for creating async TCP/IP connections built upon react/socket-client", + "keywords": ["SocketClient", "network", "connection", "timeout", "delay", "reject", "repeat", "retry", "random", "acl", "firewall", "ReactPHP"], "homepage": "https://github.com/clue/php-connection-manager-extra", "license": "MIT", "authors": [ @@ -11,7 +11,7 @@ } ], "autoload": { - "psr-4": {"ConnectionManager\\Extra\\": "src"} + "psr-4": { "ConnectionManager\\Extra\\": "src" } }, "require": { "php": ">=5.3",