File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.0 (2020-12-21)
4+
5+ * Feature: Add PHP 8 support and improve test suite.
6+ Update to PHPUnit 9 and simplify test setup.
7+ (#30 and #31 by @SimonFrings and #32 by @clue )
8+
39## 1.0.0 (2020-05-28)
410
511* Feature: Change ` Compressor ` and ` Decompressor ` to use more efficient streaming compression context.
915 Benchmark results suggest this improves both compression and decompression performance by ca. 25%.
1016
1117* BC break: Require PHP 7+ with ` ext-zlib ` during installation and drop legacy PHP and legacy HHVM support.
12- (#25 , 26 and #28 by @clue )
18+ (#25 , # 26 and #28 by @clue )
1319
1420 We're committed to providing a smooth upgrade path for legacy setups.
1521 If you need to support legacy PHP versions and legacy HHVM, you may want to
Original file line number Diff line number Diff line change @@ -174,14 +174,14 @@ For more details, see ReactPHP's
174174
175175## Install
176176
177- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
177+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
178178[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
179179
180180This project follows [ SemVer] ( https://semver.org/ ) .
181181This will install the latest supported version:
182182
183183``` bash
184- $ composer require clue/zlib-react:^1.0
184+ $ composer require clue/zlib-react:^1.1
185185```
186186
187187See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
@@ -210,7 +210,7 @@ $ composer require "clue/zlib-react:^1.0||^0.2.2"
210210## Tests
211211
212212To run the test suite, you first need to clone this repo and then install all
213- dependencies [ through Composer] ( https://getcomposer.org ) :
213+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
214214
215215``` bash
216216$ composer install
@@ -232,6 +232,7 @@ This project is released under the permissive [MIT license](LICENSE).
232232## More
233233
234234* If you want to learn more about processing streams of data, refer to the documentation of
235- the underlying [ react/stream] ( https://github.com/reactphp/stream ) component
235+ the underlying [ react/stream] ( https://github.com/reactphp/stream ) component.
236+
236237* If you want to process compressed tarballs (` .tar.gz ` and ` .tgz ` file extension), you may
237238 want to use [ clue/reactphp-tar] ( https://github.com/clue/reactphp-tar ) on the decompressed stream.
You can’t perform that action at this time.
0 commit comments