Skip to content

Commit

Permalink
Prepare v0.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Nov 25, 2016
1 parent 7922540 commit 9f46c4c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.5.2 (2016-11-25)

* Feature: Apply protocol version and username/password auth from SOCKS URI
(#43 by @clue)

```php
// explicitly use SOCKS5
$client = new Client('socks5://127.0.0.1', $loop);

// use authentication (automatically SOCKS5)
$client = new Client('user:pass@127.0.0.1', $loop);
```

* More explicit client examples, including proxy chaining
(#42 by @clue)

## 0.5.1 (2016-11-21)

* Feature: Support Promise cancellation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ The recommended way to install this library is [through Composer](http://getcomp
This will install the latest supported version:

```bash
$ composer require clue/socks-react:^0.5.1
$ composer require clue/socks-react:^0.5.2
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand Down

0 comments on commit 9f46c4c

Please sign in to comment.