File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.5.5 (2021-07-19)
4
+
5
+ * Feature: Simplify usage by supporting new default loop.
6
+ (#134 by @clue )
7
+
8
+ ``` php
9
+ // old (still supported)
10
+ $factory = new React\MySQL\Factory($loop);
11
+
12
+ // new (using default loop)
13
+ $factory = new React\MySQL\Factory();
14
+ ```
15
+
16
+ * Improve test setup, use GitHub actions for continuous integration (CI) and fix minor typo.
17
+ (#132 by @SimonFrings and #129 by @mmoreram)
18
+
3
19
## 0.5.4 (2019-05-21)
4
20
5
21
* Fix: Do not start idle timer when lazy connection is already closed.
Original file line number Diff line number Diff line change 1
-
2
1
# MySQL
3
2
4
3
[ ![ CI status] ( https://github.com/friends-of-reactphp/mysql/workflows/CI/badge.svg )] ( https://github.com/friends-of-reactphp/mysql/actions )
@@ -486,7 +485,7 @@ The recommended way to install this library is [through Composer](https://getcom
486
485
This will install the latest supported version:
487
486
488
487
``` bash
489
- $ composer require react/mysql:^0.5.4
488
+ $ composer require react/mysql:^0.5.5
490
489
```
491
490
492
491
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments