Skip to content

Commit 04794ae

Browse files
committed
Prepare v0.4.3 release
1 parent 142fe54 commit 04794ae

File tree

2 files changed

+45
-8
lines changed

2 files changed

+45
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@
22

33
## 0.4.3 (2017-02-10)
44

5-
* First class support for PHP7 and HHVM #102 @clue
6-
* Improve compatibility with legacy versions #101 @clue
7-
* Remove unneeded stubs from tests #100 @legionth
8-
* Replace PHPUnit's getMock() for forward compatibility #93 @nopolabs
9-
* Add PHPUnit 4.8 to require-dev #92 @nopolabs
10-
* Fix checking maximum header size, do not take start of body into account #88 @nopolabs
11-
* data listener is removed if HeaderParser emits error #83 @nick4fake
12-
* Removed testing against HHVM nightly #66 @WyriHaximus
5+
* Fix: Do not take start of body into account when checking maximum header size
6+
(#88 by @nopolabs)
7+
8+
* Fix: Remove `data` listener if `HeaderParser` emits an error
9+
(#83 by @nick4fake)
10+
11+
* First class support for PHP 5.3 through PHP 7 and HHVM
12+
(#101 and #102 by @clue, #66 by @WyriHaximus)
13+
14+
* Improve test suite by adding PHPUnit to require-dev,
15+
improving forward compatibility with newer PHPUnit versions
16+
and replacing unneeded test stubs
17+
(#92 and #93 by @nopolabs, #100 by @legionth)
1318

1419
## 0.4.2 (2016-11-09)
1520

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,35 @@ $loop->run();
3535
```
3636

3737
See also the [examples](examples).
38+
39+
## Install
40+
41+
The recommended way to install this library is [through Composer](http://getcomposer.org).
42+
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
43+
44+
This will install the latest supported version:
45+
46+
```bash
47+
$ composer require react/http:^0.4.3
48+
```
49+
50+
More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
51+
52+
## Tests
53+
54+
To run the test suite, you first need to clone this repo and then install all
55+
dependencies [through Composer](http://getcomposer.org):
56+
57+
```bash
58+
$ composer install
59+
```
60+
61+
To run the test suite, go to the project root and run:
62+
63+
```bash
64+
$ php vendor/bin/phpunit
65+
```
66+
67+
## License
68+
69+
MIT, see [LICENSE file](LICENSE).

0 commit comments

Comments
 (0)