Skip to content

Commit 40f2c39

Browse files
committed
Prepare v1.8.0 release
1 parent 70c5dc0 commit 40f2c39

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

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

3+
## 1.8.0 (2021-07-11)
4+
5+
A major new feature release, see [**release announcement**](https://clue.engineering/2021/announcing-reactphp-default-loop).
6+
7+
* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop).
8+
(#42 by @clue)
9+
10+
```php
11+
// old (still supported)
12+
$factory = new React\Datagram\Factory($loop);
13+
14+
// new (using default loop)
15+
$factory = new React\Datagram\Factory();
16+
```
17+
318
## 1.7.0 (2021-06-25)
419

520
* Feature: Support falling back to multiple DNS servers from DNS config.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This project follows [SemVer](https://semver.org/).
3737
This will install the latest supported version:
3838

3939
```bash
40-
$ composer require react/datagram:^1.7
40+
$ composer require react/datagram:^1.8
4141
```
4242

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

0 commit comments

Comments
 (0)