Skip to content

Commit 80fd8d8

Browse files
committed
Prepare v1.3.0 release
1 parent 512c838 commit 80fd8d8

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
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+
## 1.3.0 (2017-09-25)
4+
5+
* Feature: Always use `Resolver` with default DNS to match Socket component
6+
and update DNS dependency to support hosts file on all platforms
7+
(#19 and #20 by @clue)
8+
9+
This means that connecting to hosts such as `localhost` (and for example
10+
those used for Docker containers) will now work as expected across all
11+
platforms with no changes required:
12+
13+
```php
14+
$factory = new Factory($loop);
15+
$factory->createClient('localhost:5353');
16+
```
17+
318
## 1.2.0 (2017-08-09)
419

520
* Feature: Target evenement 3.0 a long side 2.0 and 1.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ This library's API is modelled after node.js's API for
3434

3535
## Install
3636

37-
The recommended way to install this library is [through Composer](http://getcomposer.org).
38-
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
37+
The recommended way to install this library is [through Composer](https://getcomposer.org).
38+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
3939

4040
```bash
41-
$ composer require react/datagram:^1.2
41+
$ composer require react/datagram:^1.3
4242
```
4343

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

4646
## Tests
4747

4848
To run the test suite, you first need to clone this repo and then install all
49-
dependencies [through Composer](http://getcomposer.org):
49+
dependencies [through Composer](https://getcomposer.org):
5050

5151
```bash
5252
$ composer install

0 commit comments

Comments
 (0)