Skip to content

Commit 457fbc4

Browse files
committed
Prepare v0.4.10 release
1 parent 7d0b0e0 commit 457fbc4

3 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 0.4.10 (2017-08-10)
4+
5+
* Feature: Forward compatibility with EventLoop v1.0 and v0.5 and
6+
lock minimum dependencies and work around circular dependency for tests
7+
(#70 and #71 by @clue)
8+
9+
* Fix: Work around DNS timeout issues for Windows users
10+
(#74 by @clue)
11+
12+
* Documentation and examples for advanced usage
13+
(#66 by @WyriHaximus)
14+
15+
* Remove broken TCP code, do not retry with invalid TCP query
16+
(#73 by @clue)
17+
18+
* Improve test suite by fixing HHVM build for now again and ignore future HHVM build errors and
19+
lock Travis distro so new defaults will not break the build and
20+
fix failing tests for PHP 7.1
21+
(#68 by @WyriHaximus and #69 and #72 by @clue)
22+
323
## 0.4.9 (2017-05-01)
424

525
* Feature: Forward compatibility with upcoming Socket v1.0 and v0.8

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,15 @@ The recommended way to install this library is [through Composer](http://getcomp
126126
This will install the latest supported version:
127127

128128
```bash
129-
$ composer require react/dns:^0.4.9
129+
$ composer require react/dns:^0.4.10
130130
```
131131

132-
More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
132+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
133+
134+
This project aims to run on any platform and thus does not require any PHP
135+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
136+
HHVM.
137+
It's *highly recommended to use PHP 7+* for this project.
133138

134139
## Tests
135140

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react/dns",
33
"description": "Async DNS resolver for ReactPHP",
4-
"keywords": ["dns", "dns-resolver"],
4+
"keywords": ["dns", "dns-resolver", "ReactPHP", "async"],
55
"license": "MIT",
66
"require": {
77
"php": ">=5.3.0",

0 commit comments

Comments
 (0)