Skip to content

Commit 7d1e08c

Browse files
committed
Prepare v0.4.13 release
1 parent b803afd commit 7d1e08c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

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

3+
## 0.4.13 (2018-02-27)
4+
5+
* Add `Config::loadSystemConfigBlocking()` to load default system config
6+
and support parsing DNS config on all supported platforms
7+
(`/etc/resolv.conf` on Unix/Linux/Mac and WMIC on Windows)
8+
(#92, #93, #94 and #95 by @clue)
9+
10+
```php
11+
$config = Config::loadSystemConfigBlocking();
12+
$server = $config->nameservers ? reset($config->nameservers) : '8.8.8.8';
13+
```
14+
15+
* Remove unneeded cyclic dependency on react/socket
16+
(#96 by @clue)
17+
318
## 0.4.12 (2018-01-14)
419

520
* Improve test suite by adding forward compatibility with PHPUnit 6,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The recommended way to install this library is [through Composer](https://getcom
166166
This will install the latest supported version:
167167

168168
```bash
169-
$ composer require react/dns:^0.4.12
169+
$ composer require react/dns:^0.4.13
170170
```
171171

172172
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)