Skip to content

Commit 39973a8

Browse files
committed
Prepare v0.5.5 release
1 parent 8bed9ef commit 39973a8

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

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+
319
## 0.5.4 (2019-05-21)
420

521
* Fix: Do not start idle timer when lazy connection is already closed.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# MySQL
32

43
[![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
486485
This will install the latest supported version:
487486

488487
```bash
489-
$ composer require react/mysql:^0.5.4
488+
$ composer require react/mysql:^0.5.5
490489
```
491490

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

0 commit comments

Comments
 (0)