File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
22
## 2.4.0 (2020-11-20)
4
23
5
24
* Fix: Refactor executing functional tests without ext-readline.
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ This project follows [SemVer](https://semver.org/).
642
642
This will install the latest supported version:
643
643
644
644
``` bash
645
- $ composer require clue/stdio-react:^2.4
645
+ $ composer require clue/stdio-react:^2.5
646
646
```
647
647
648
648
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments