Skip to content

Commit 9b4cd9c

Browse files
committed
Prepare v1.2.1 release
1 parent 2a9970f commit 9b4cd9c

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

CHANGELOG.md

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

3+
## 1.2.1 (2017-12-22)
4+
5+
* README improvements
6+
(#28 by @jsor)
7+
8+
* Improve test suite by adding forward compatiblity with PHPUnit 6 and
9+
fix test suite forward compatibility with upcoming EventLoop releases
10+
(#30 and #31 by @clue)
11+
312
## 1.2.0 (2017-08-08)
413

514
* Feature: Only start timers if input Promise is still pending and

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -335,21 +335,27 @@ The `getTimeout()` method can be used to get the timeout value in seconds.
335335

336336
## Install
337337

338-
The recommended way to install this library is [through Composer](http://getcomposer.org).
339-
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
338+
The recommended way to install this library is [through Composer](https://getcomposer.org).
339+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
340340

341+
This project follows [SemVer](http://semver.org/).
341342
This will install the latest supported version:
342343

343344
```bash
344-
$ composer require react/promise-timer:^1.2
345+
$ composer require react/promise-timer:^1.2.1
345346
```
346347

347-
More details and upgrade guides can be found in the [CHANGELOG](CHANGELOG.md).
348+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
349+
350+
This project aims to run on any platform and thus does not require any PHP
351+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
352+
HHVM.
353+
It's *highly recommended to use PHP 7+* for this project.
348354

349355
## Tests
350356

351357
To run the test suite, you first need to clone this repo and then install all
352-
dependencies [through Composer](http://getcomposer.org):
358+
dependencies [through Composer](https://getcomposer.org):
353359

354360
```bash
355361
$ composer install

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react/promise-timer",
3-
"description": "Trivial timeout implementation for Promises",
3+
"description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
44
"keywords": ["Promise", "timeout", "timer", "event-loop", "ReactPHP", "async"],
55
"homepage": "https://github.com/react/promise-timer",
66
"license": "MIT",

0 commit comments

Comments
 (0)