Skip to content

Commit 6ddf7da

Browse files
committed
Prepare v1.3.0 release
1 parent 71964c1 commit 6ddf7da

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

CHANGELOG.md

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

3+
## 1.3.0 (2022-08-30)
4+
5+
* Feature: Simplify usage by supporting new default loop.
6+
(#33 by @SimonFrings)
7+
8+
```php
9+
// old (still supported)
10+
$connector = new ConnectionManagerTimeout($connector, 3.0, $loop);
11+
$delayed = new ConnectionManagerDelayed($connector, 0.5, $loop);
12+
13+
// new (using default loop)
14+
$connector = new ConnectionManagerTimeout($connector, 3.0);
15+
$delayed = new ConnectionManagerDelayed($connector, 0.5);
16+
```
17+
18+
* Feature: Full support for PHP 8.1 and PHP 8.2.
19+
(#36 and #37 by @SimonFrings)
20+
21+
* Feature: Forward compatibility with upcoming Promise v3.
22+
(#34 by @clue)
23+
24+
* Improve test suite and add badge to show number of project installations.
25+
(#35 by @SimonFrings and #31 by @PaulRotmann)
26+
327
## 1.2.0 (2020-12-12)
428

529
* Improve test suite and add `.gitattributes` to exclude dev files from exports.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ This project follows [SemVer](https://semver.org/).
254254
This will install the latest supported version:
255255

256256
```bash
257-
$ composer require clue/connection-manager-extra:^1.2
257+
composer require clue/connection-manager-extra:^1.3
258258
```
259259

260260
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
@@ -270,13 +270,13 @@ To run the test suite, you first need to clone this repo and then install all
270270
dependencies [through Composer](https://getcomposer.org/):
271271

272272
```bash
273-
$ composer install
273+
composer install
274274
```
275275

276276
To run the test suite, go to the project root and run:
277277

278278
```bash
279-
$ vendor/bin/phpunit
279+
vendor/bin/phpunit
280280
```
281281

282282
## License

0 commit comments

Comments
 (0)