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 ec3d153 commit 8579678
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 1.3.0 (2021-08-06)

* Feature: Simplify usage by supporting new default loop.
(#27 and #28 by @clue)

```php
// old (still supported)
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]', $loop);
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]', $loop);

// new (using default loop)
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]');
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]');
```

* Documentation improvements and updated examples.
(#25, #29 and #30 by @clue and #23 and #26 by @SimonFrings)

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

## 1.2.0 (2020-10-23)

* Fix: Fix error reporting when parsing invalid SSH server URL.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/reactphp-ssh-proxy:^1.2
$ composer require clue/reactphp-ssh-proxy:^1.3
```

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

0 comments on commit 8579678

Please sign in to comment.