Skip to content

Commit

Permalink
Prepare v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Dec 21, 2020
1 parent 584433d commit e3ef9c0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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.

0 comments on commit e3ef9c0

Please sign in to comment.