diff --git a/CHANGELOG.md b/CHANGELOG.md index 37223fe..2d56f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.1.0 (2017-06-11) + +* Feature: Support proxy authentication if proxy URL contains username/password + (#14 by @clue) + + ```php + // new: username/password will now be passed to HTTP proxy server + $proxy = new ProxyConnector('user:pass@127.0.0.1:8080'); + ``` + ## 1.0.0 (2017-06-10) * First stable release, now following SemVer diff --git a/README.md b/README.md index 3b0d58e..8fa9ff7 100644 --- a/README.md +++ b/README.md @@ -325,7 +325,7 @@ The recommended way to install this library is [through Composer](http://getcomp This will install the latest supported version: ```bash -$ composer require clue/http-proxy-react:^1.0 +$ composer require clue/http-proxy-react:^1.1 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.