Skip to content

Commit

Permalink
Prepare v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jan 1, 2020
1 parent a2c6002 commit 6d24de0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 1.1.1 (2020-01-01)

* Fix: Fix reporting connection refused errors with `ExtUvLoop` on Linux and `StreamSelectLoop` on Windows.
(#207 and #208 by @clue)

* Fix: Fix unsupported EventConfig and `SEGFAULT` on shutdown with `ExtEventLoop` on Windows.
(#205 by @clue)

* Fix: Check PCNTL functions for signal support instead of PCNTL extension with `StreamSelectLoop`.
(#195 by @clue)

* Add `.gitattributes` to exclude dev files from exports.
(#201 by @reedy)

* Improve test suite to fix testing `ExtUvLoop` on Travis,
fix Travis CI builds, do not install `libuv` on legacy PHP setups,
fix failing test cases due to inaccurate timers,
run tests on Windows via Travis CI and
run tests on PHP 7.4 and simplify test matrix and test setup.
(#197 by @WyriHaximus and #202, #203, #204 and #209 by @clue)

## 1.1.0 (2019-02-07)

* New UV based event loop (ext-uv).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ event loop implementation first or they will throw a `BadMethodCallException` on

A `stream_select()` based event loop.

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

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

```bash
$ composer require react/event-loop:^1.1
$ composer require react/event-loop:^1.1.1
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand Down
4 changes: 2 additions & 2 deletions src/StreamSelectLoop.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* A `stream_select()` based event loop.
*
* This uses the [`stream_select()`](http://php.net/manual/en/function.stream-select.php)
* This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
* function and is the only implementation which works out of the box with PHP.
*
* This event loop works out of the box on PHP 5.4 through PHP 7+ and HHVM.
Expand Down Expand Up @@ -47,7 +47,7 @@
* then adjust your system time forward by 20s, the timer may trigger in 10s.
* See also [`addTimer()`](#addtimer) for more details.
*
* @link http://php.net/manual/en/function.stream-select.php
* @link https://www.php.net/manual/en/function.stream-select.php
*/
final class StreamSelectLoop implements LoopInterface
{
Expand Down

0 comments on commit 6d24de0

Please sign in to comment.