From ecd9f674ab389491247adcbd9e5ced7627ef5eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Thu, 3 Aug 2017 13:10:21 +0200 Subject: [PATCH] Prepare v1.1.0 release --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bd354a..8c036e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 1.1.0 (2017-08-03) + +* Feature: Support custom rejection reason for ConnectionManagerReject + (#23 by @clue) + + ```php + $connector = new ConnectionManagerReject(function ($uri) { + throw new RuntimeException($uri . ' blocked'); + }); + ``` + ## 1.0.1 (2017-06-23) * Fix: Ignore URI scheme when matching selective connectors diff --git a/README.md b/README.md index eecc023..09ea289 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,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:^1.0.1 +$ composer require clue/connection-manager-extra:^1.1 ``` See also the [CHANGELOG](CHANGELOG.md) for more details about version upgrades.