Skip to content

Commit 6d24de0

Browse files
committed
Prepare v1.1.1 release
1 parent a2c6002 commit 6d24de0

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CHANGELOG.md

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

3+
## 1.1.1 (2020-01-01)
4+
5+
* Fix: Fix reporting connection refused errors with `ExtUvLoop` on Linux and `StreamSelectLoop` on Windows.
6+
(#207 and #208 by @clue)
7+
8+
* Fix: Fix unsupported EventConfig and `SEGFAULT` on shutdown with `ExtEventLoop` on Windows.
9+
(#205 by @clue)
10+
11+
* Fix: Check PCNTL functions for signal support instead of PCNTL extension with `StreamSelectLoop`.
12+
(#195 by @clue)
13+
14+
* Add `.gitattributes` to exclude dev files from exports.
15+
(#201 by @reedy)
16+
17+
* Improve test suite to fix testing `ExtUvLoop` on Travis,
18+
fix Travis CI builds, do not install `libuv` on legacy PHP setups,
19+
fix failing test cases due to inaccurate timers,
20+
run tests on Windows via Travis CI and
21+
run tests on PHP 7.4 and simplify test matrix and test setup.
22+
(#197 by @WyriHaximus and #202, #203, #204 and #209 by @clue)
23+
324
## 1.1.0 (2019-02-07)
425

526
* New UV based event loop (ext-uv).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ event loop implementation first or they will throw a `BadMethodCallException` on
154154

155155
A `stream_select()` based event loop.
156156

157-
This uses the [`stream_select()`](http://php.net/manual/en/function.stream-select.php)
157+
This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
158158
function and is the only implementation which works out of the box with PHP.
159159

160160
This event loop works out of the box on PHP 5.3 through PHP 7+ and HHVM.
@@ -672,7 +672,7 @@ This project follows [SemVer](https://semver.org/).
672672
This will install the latest supported version:
673673

674674
```bash
675-
$ composer require react/event-loop:^1.1
675+
$ composer require react/event-loop:^1.1.1
676676
```
677677

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

src/StreamSelectLoop.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* A `stream_select()` based event loop.
1111
*
12-
* This uses the [`stream_select()`](http://php.net/manual/en/function.stream-select.php)
12+
* This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
1313
* function and is the only implementation which works out of the box with PHP.
1414
*
1515
* This event loop works out of the box on PHP 5.4 through PHP 7+ and HHVM.
@@ -47,7 +47,7 @@
4747
* then adjust your system time forward by 20s, the timer may trigger in 10s.
4848
* See also [`addTimer()`](#addtimer) for more details.
4949
*
50-
* @link http://php.net/manual/en/function.stream-select.php
50+
* @link https://www.php.net/manual/en/function.stream-select.php
5151
*/
5252
final class StreamSelectLoop implements LoopInterface
5353
{

0 commit comments

Comments
 (0)