Skip to content

Commit

Permalink
Prepare v0.5.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jul 19, 2021
1 parent 8bed9ef commit 39973a8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.5.5 (2021-07-19)

* Feature: Simplify usage by supporting new default loop.
(#134 by @clue)

```php
// old (still supported)
$factory = new React\MySQL\Factory($loop);

// new (using default loop)
$factory = new React\MySQL\Factory();
```

* Improve test setup, use GitHub actions for continuous integration (CI) and fix minor typo.
(#132 by @SimonFrings and #129 by @mmoreram)

## 0.5.4 (2019-05-21)

* Fix: Do not start idle timer when lazy connection is already closed.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# MySQL

[![CI status](https://github.com/friends-of-reactphp/mysql/workflows/CI/badge.svg)](https://github.com/friends-of-reactphp/mysql/actions)
Expand Down Expand Up @@ -486,7 +485,7 @@ The recommended way to install this library is [through Composer](https://getcom
This will install the latest supported version:

```bash
$ composer require react/mysql:^0.5.4
$ composer require react/mysql:^0.5.5
```

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

0 comments on commit 39973a8

Please sign in to comment.