Skip to content

Commit c73bcdc

Browse files
committed
Prepare v2.5.0 release
1 parent 3659e89 commit c73bcdc

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 2.5.0 (2021-10-25)
4+
5+
* Feature: Simplify usage by supporting new default loop
6+
(#99 by @clue)
7+
8+
```php
9+
// old (still supported)
10+
$stdio = new Clue\React\Stdio\Stdio($loop);
11+
12+
// new (using default loop)
13+
$stdio = new Clue\React\Stdio\Stdio();
14+
```
15+
16+
* Maintenance: Improve code examples and documentation
17+
(#100 by @clue and #98 by @PaulRotmann)
18+
19+
* Maintenance: Use GitHub actions for continuous integration (CI)
20+
(#97 by @SimonFrings)
21+
322
## 2.4.0 (2020-11-20)
423

524
* Fix: Refactor executing functional tests without ext-readline.

README.md

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

644644
```bash
645-
$ composer require clue/stdio-react:^2.4
645+
$ composer require clue/stdio-react:^2.5
646646
```
647647

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

0 commit comments

Comments
 (0)