Skip to content

Commit 70babf5

Browse files
committed
Prepare v1.4.0 release
1 parent 6008eb2 commit 70babf5

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG.md

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

3+
## 1.4.0 (2018-02-28)
4+
5+
* Feature: Update DNS dependency to support loading system default DNS
6+
nameserver config on all supported platforms
7+
(`/etc/resolv.conf` on Unix/Linux/Mac/Docker/WSL and WMIC on Windows)
8+
(#23 by @clue)
9+
10+
This means that connecting to hosts that are managed by a local DNS server,
11+
such as a corporate DNS server or when using Docker containers, will now
12+
work as expected across all platforms with no changes required:
13+
14+
```php
15+
$factory = new Factory($loop);
16+
$factory->createClient('intranet.example:5353');
17+
```
18+
19+
* Improve README
20+
(#22 by @jsor)
21+
322
## 1.3.0 (2017-09-25)
423

524
* Feature: Always use `Resolver` with default DNS to match Socket component

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datagram
22

3-
[![Build Status](https://travis-ci.org/reactphp/datagram.svg?branch=master)](https://travis-ci.org/reactphp/datagram) [![Code Climate](https://codeclimate.com/github/reactphp/datagram/badges/gpa.svg)](https://codeclimate.com/github/reactphp/datagram)
3+
[![Build Status](https://travis-ci.org/reactphp/datagram.svg?branch=master)](https://travis-ci.org/reactphp/datagram)
44

55
Event-driven UDP datagram socket client and server for [ReactPHP](https://reactphp.org).
66

@@ -36,12 +36,20 @@ This library's API is modelled after node.js's API for
3636
The recommended way to install this library is [through Composer](https://getcomposer.org).
3737
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
3838

39+
This project follows [SemVer](http://semver.org/).
40+
This will install the latest supported version:
41+
3942
```bash
40-
$ composer require react/datagram:^1.3
43+
$ composer require react/datagram:^1.4
4144
```
4245

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

48+
This project aims to run on any platform and thus does not require any PHP
49+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
50+
HHVM.
51+
It's *highly recommended to use PHP 7+* for this project.
52+
4553
## Tests
4654

4755
To run the test suite, you first need to clone this repo and then install all

0 commit comments

Comments
 (0)