Skip to content

Commit 966c255

Browse files
committed
Prepare v1.2.0 release
1 parent e4be2e6 commit 966c255

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

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

3+
## 1.2.0 (2017-08-03)
4+
5+
* Feature / Fix: Forward compatibility with future EventLoop v1.0 and v0.5 and
6+
cap small timeout values for legacy EventLoop
7+
(#26 by @clue)
8+
9+
```php
10+
// now works across all versions
11+
Block\sleep(0.000001, $loop);
12+
```
13+
14+
* Feature / Fix: Throw `UnexpectedValueException` if Promise gets rejected with non-Exception
15+
(#27 by @clue)
16+
17+
```php
18+
// now throws an UnexceptedValueException
19+
Block\await(Promise\reject(false), $loop);
20+
```
21+
22+
* First class support for legacy PHP 5.3 through PHP 7.1 and HHVM
23+
(#24 and #25 by @clue)
24+
25+
* Improve testsuite by adding PHPUnit to require-dev and
26+
Fix HHVM build for now again and ignore future HHVM build errors
27+
(#23 and #24 by @clue)
28+
329
## 1.1.0 (2016-03-09)
430

531
* Feature: Add optional timeout parameter to all await*() functions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ The recommended way to install this library is [through Composer](http://getcomp
213213
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
214214

215215
```bash
216-
$ composer require clue/block-react:^1.1
216+
$ composer require clue/block-react:^1.2
217217
```
218218

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

0 commit comments

Comments
 (0)