Skip to content

Commit ecd9f67

Browse files
committed
Prepare v1.1.0 release
1 parent 1e719a0 commit ecd9f67

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

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

3+
## 1.1.0 (2017-08-03)
4+
5+
* Feature: Support custom rejection reason for ConnectionManagerReject
6+
(#23 by @clue)
7+
8+
```php
9+
$connector = new ConnectionManagerReject(function ($uri) {
10+
throw new RuntimeException($uri . ' blocked');
11+
});
12+
```
13+
314
## 1.0.1 (2017-06-23)
415

516
* Fix: Ignore URI scheme when matching selective connectors

README.md

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

241241
```bash
242-
$ composer require clue/connection-manager-extra:^1.0.1
242+
$ composer require clue/connection-manager-extra:^1.1
243243
```
244244

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

0 commit comments

Comments
 (0)