Skip to content

Commit 41c06ae

Browse files
committed
Prepare v1.2.0 release
1 parent 1f40334 commit 41c06ae

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

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

3+
## 1.2.0 (2024-02-23)
4+
5+
* Feature: Forward compatibility with Promise v3.
6+
(#80 by @SimonFrings)
7+
8+
* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop) and new Socket API.
9+
(#70 by @clue and #71 by @SimonFrings)
10+
11+
```php
12+
// old (still supported)
13+
$factory = new Clue\React\Ami\Factory($loop);
14+
15+
// new (using default loop)
16+
$factory = new Clue\React\Ami\Factory();
17+
```
18+
19+
* Feature: Full PHP 8.3 compatibility.
20+
(#67, #73 and #79 by @SimonFrings)
21+
22+
* Minor documentation improvements.
23+
(#69 by @PaulRotmann and #77 by @yadaiio)
24+
25+
* Improve test suite and use GitHub actions for continuous integration (CI).
26+
(#67 and #78 by @SimonFrings)
27+
328
## 1.1.0 (2020-10-09)
429

530
* Feature: Support authentication with URL-encoded special characters.

README.md

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

559559
```bash
560-
composer require clue/ami-react:^1.1
560+
composer require clue/ami-react:^1.2
561561
```
562562

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

0 commit comments

Comments
 (0)