Skip to content

Commit 8579678

Browse files
committed
Prepare v1.3.0 release
1 parent ec3d153 commit 8579678

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 1.3.0 (2021-08-06)
4+
5+
* Feature: Simplify usage by supporting new default loop.
6+
(#27 and #28 by @clue)
7+
8+
```php
9+
// old (still supported)
10+
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]', $loop);
11+
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]', $loop);
12+
13+
// new (using default loop)
14+
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]');
15+
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]');
16+
```
17+
18+
* Documentation improvements and updated examples.
19+
(#25, #29 and #30 by @clue and #23 and #26 by @SimonFrings)
20+
21+
* Improve test suite and use GitHub actions for continuous integration (CI).
22+
(#24 by @SimonFrings)
23+
324
## 1.2.0 (2020-10-23)
425

526
* Fix: Fix error reporting when parsing invalid SSH server URL.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ This project follows [SemVer](https://semver.org/).
560560
This will install the latest supported version:
561561

562562
```bash
563-
$ composer require clue/reactphp-ssh-proxy:^1.2
563+
$ composer require clue/reactphp-ssh-proxy:^1.3
564564
```
565565

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

0 commit comments

Comments
 (0)