Skip to content

Commit

Permalink
Prepare v1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Aug 6, 2021
1 parent 5707c2d commit f90edf4
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 1.3.0 (2021-08-06)

* Feature: Simplify usage by supporting new default loop and making `Connector` optional.
(#100 and #101 by @clue)

```php
// old (still supported)
$proxy = new Clue\React\Socks\Client(
$url,
new React\Socket\Connector($loop)
);
$server = new Clue\React\Socks\Server($loop);
$server->listen(new React\Socket\Server('127.0.0.1:1080', $loop));

// new (using default loop)
$proxy = new Clue\React\Socks\Client('127.0.0.1:1080');
$socks = new Clue\React\Socks\Server();
$socks->listen(new React\Socket\SocketServer('127.0.0.1:1080'));
```

* Documentation improvements and updated examples.
(#98 and #102 by @clue and #99 by @PaulRotmann)

* Improve test suite and use GitHub actions for continuous integration (CI).
(#97 by @SimonFrings)

## 1.2.0 (2020-10-23)

* Enhanced documentation for ReactPHP's new HTTP client.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/socks-react:^1.2
$ composer require clue/socks-react:^1.3
```

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

0 comments on commit f90edf4

Please sign in to comment.