Skip to content

Commit

Permalink
Prepare v1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Aug 30, 2022
1 parent 71964c1 commit 6ddf7da
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 1.3.0 (2022-08-30)

* Feature: Simplify usage by supporting new default loop.
(#33 by @SimonFrings)

```php
// old (still supported)
$connector = new ConnectionManagerTimeout($connector, 3.0, $loop);
$delayed = new ConnectionManagerDelayed($connector, 0.5, $loop);

// new (using default loop)
$connector = new ConnectionManagerTimeout($connector, 3.0);
$delayed = new ConnectionManagerDelayed($connector, 0.5);
```

* Feature: Full support for PHP 8.1 and PHP 8.2.
(#36 and #37 by @SimonFrings)

* Feature: Forward compatibility with upcoming Promise v3.
(#34 by @clue)

* Improve test suite and add badge to show number of project installations.
(#35 by @SimonFrings and #31 by @PaulRotmann)

## 1.2.0 (2020-12-12)

* Improve test suite and add `.gitattributes` to exclude dev files from exports.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/connection-manager-extra:^1.2
composer require clue/connection-manager-extra:^1.3
```

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

```bash
$ composer install
composer install
```

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

```bash
$ vendor/bin/phpunit
vendor/bin/phpunit
```

## License
Expand Down

0 comments on commit 6ddf7da

Please sign in to comment.