Skip to content

Commit

Permalink
Prepare v0.8.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Nov 18, 2017
1 parent ae97217 commit 2e86601
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.8.6 (2017-11-18)

* Feature: Add Unix domain socket (UDS) support to `Server` with `unix://` URI scheme
and add advanced `UnixServer` class.
(#120 by @andig)

```php
// new: Server now supports "unix://" scheme
$server = new Server('unix:///tmp/server.sock', $loop);

// new: advanced usage
$server = new UnixServer('/tmp/server.sock', $loop);
```

* Restructure examples to ease getting started
(#136 by @clue)

* Improve test suite by adding forward compatibility with PHPUnit 6 and
ignore Mac OS X test failures for now until Travis tests work again
(#133 by @gabriel-caruso and #134 by @clue)

## 0.8.5 (2017-10-23)

* Fix: Work around PHP bug with Unix domain socket (UDS) paths for Mac OS X
Expand All @@ -8,7 +29,7 @@
* Fix: Fix `SecureServer` to return `null` URI if server socket is already closed
(#129 by @clue)

* Improve test sutie by adding forward compatibility with PHPUnit v5 and
* Improve test suite by adding forward compatibility with PHPUnit v5 and
forward compatibility with upcoming EventLoop releases in tests and
test Mac OS X on Travis
(#122 by @andig and #125, #127 and #130 by @clue)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ The recommended way to install this library is [through Composer](https://getcom
This will install the latest supported version:

```bash
$ composer require react/socket:^0.8.5
$ composer require react/socket:^0.8.6
```

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

0 comments on commit 2e86601

Please sign in to comment.