From e3ef9c03074f4a648b27e2eebd735fd2a64c3905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Mon, 21 Dec 2020 16:54:21 +0100 Subject: [PATCH] Prepare v1.1.0 release --- CHANGELOG.md | 8 +++++++- README.md | 9 +++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d82573..274ed78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.1.0 (2020-12-21) + +* Feature: Add PHP 8 support and improve test suite. + Update to PHPUnit 9 and simplify test setup. + (#30 and #31 by @SimonFrings and #32 by @clue) + ## 1.0.0 (2020-05-28) * Feature: Change `Compressor` and `Decompressor` to use more efficient streaming compression context. @@ -9,7 +15,7 @@ Benchmark results suggest this improves both compression and decompression performance by ca. 25%. * BC break: Require PHP 7+ with `ext-zlib` during installation and drop legacy PHP and legacy HHVM support. - (#25, 26 and #28 by @clue) + (#25, #26 and #28 by @clue) We're committed to providing a smooth upgrade path for legacy setups. If you need to support legacy PHP versions and legacy HHVM, you may want to diff --git a/README.md b/README.md index 6c92414..ce6b85d 100644 --- a/README.md +++ b/README.md @@ -174,14 +174,14 @@ For more details, see ReactPHP's ## Install -The recommended way to install this library is [through Composer](https://getcomposer.org). +The recommended way to install this library is [through Composer](https://getcomposer.org/). [New to Composer?](https://getcomposer.org/doc/00-intro.md) This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/zlib-react:^1.0 +$ composer require clue/zlib-react:^1.1 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. @@ -210,7 +210,7 @@ $ composer require "clue/zlib-react:^1.0||^0.2.2" ## Tests To run the test suite, you first need to clone this repo and then install all -dependencies [through Composer](https://getcomposer.org): +dependencies [through Composer](https://getcomposer.org/): ```bash $ composer install @@ -232,6 +232,7 @@ This project is released under the permissive [MIT license](LICENSE). ## More * If you want to learn more about processing streams of data, refer to the documentation of - the underlying [react/stream](https://github.com/reactphp/stream) component + the underlying [react/stream](https://github.com/reactphp/stream) component. + * If you want to process compressed tarballs (`.tar.gz` and `.tgz` file extension), you may want to use [clue/reactphp-tar](https://github.com/clue/reactphp-tar) on the decompressed stream.