Skip to content

Commit 077cab8

Browse files
committed
Prepare v0.2.0 release
1 parent 6720ea3 commit 077cab8

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.2.0 (2019-09-09)
4+
5+
* Feature / BC break: Support latest ReactPHP stream version and strictly follow stream semantics.
6+
(#11 by @clue)
7+
8+
* Feature: Add backpressure support and support throttling.
9+
(#12 by @clue)
10+
11+
* Improve test suite by adding PHPUnit to `require-dev`, support PHPUnit 7 - legacy PHPUnit 4,
12+
test against legacy PHP 5.3 through PHP 7.3 and update project homepage.
13+
(#9 and #10 by @clue)
14+
315
## 0.1.0 (2015-06-17)
416

517
* First tagged release

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,15 @@ See also the [examples](examples).
5050
The recommended way to install this library is [through Composer](https://getcomposer.org).
5151
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
5252

53-
```JSON
54-
{
55-
"require": {
56-
"clue/tar-react": "~0.1.0"
57-
}
58-
}
53+
While in beta, this project does not currently follow [SemVer](https://semver.org/).
54+
This will install the latest supported version:
55+
56+
```bash
57+
$ composer require clue/tar-react:^0.2
5958
```
6059

60+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
61+
6162
This project aims to run on any platform and thus does not require any PHP
6263
extensions and supports running on legacy PHP 5.3 through current PHP 7+.
6364
It's *highly recommended to use PHP 7+* for this project.
@@ -79,7 +80,10 @@ $ php vendor/bin/phpunit
7980

8081
## License
8182

82-
MIT
83+
This project is released under the permissive [MIT license](LICENSE).
84+
85+
> Did you know that I offer custom development services and issuing invoices for
86+
sponsorships of releases and for contributions? Contact me (@clue) for details.
8387

8488
## More
8589

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"name": "clue/tar-react",
33
"description": "Streaming parser to extract tarballs with ReactPHP.",
44
"keywords": ["tar", "archive", "tarball", "untar", "parser", "decoder", "extract", "unpack", "ReactPHP", "async"],
5-
"homepage": "https://github.com/clue/php-tar-react",
5+
"homepage": "https://github.com/clue/reactphp-tar",
66
"license": "MIT",
77
"authors": [
88
{
99
"name": "Christian Lück",
10-
"email": "christian@lueck.tv"
10+
"email": "christian@clue.engineering"
1111
}
1212
],
1313
"require": {

0 commit comments

Comments
 (0)