Skip to content

Commit

Permalink
Prepare v1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonFrings committed Dec 1, 2022
1 parent a9b2609 commit 0ecc37a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
39 changes: 37 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
# Changelog

# 1.3.0 (2020-12-17)
## 1.4.0 (2022-12-01)

* Feature: Add support for PHP 8.1 and PHP 8.2.
(#78 by @dinooo13)

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

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

```php
// old (still supported)
$client = new Clue\React\Docker\Client($loop);

// new (using default loop)
$client = new Clue\React\Docker\Client();
```

* Feature: Add commit API endpoint.
(#74 by @dinooo13)

```php
$client->containerCommit($container)->then(function (array $image) {
var_dump($image);
}, function (Exception $e) {
echo 'Error: ' . $e->getMessage() . PHP_EOL;
});
```

* Improve documentation and examples, update to use new reactphp/async package and new HTTP and Socket API.
(#70 by @PaulRotmann, #72 by @SimonFrings, #73 by @clue and #77 by @dinooo13)

* Improve test suite and ensure 100% code coverage.
(#80, #81 by @clue and #79 by @dinooo13)

## 1.3.0 (2020-12-17)

* Feature: Update to reactphp/http v1.0.0.
(#64 by @clue)
Expand Down Expand Up @@ -139,4 +175,3 @@
## 0.0.0 (2014-11-26)

* Initial concept
# Changelog
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/docker-react:^1.3
composer require clue/docker-react:^1.4
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand All @@ -413,13 +413,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 0ecc37a

Please sign in to comment.