Skip to content

Commit

Permalink
Prepare v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Aug 3, 2017
1 parent 1e719a0 commit ecd9f67
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ecd9f67

Please sign in to comment.