File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
219219See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments