8000 Prepare v0.5.0 release · SimonFrings/reactphp-stdio@950c459 · GitHub
[go: up one dir, main page]

Skip to content

Commit 950c459

Browse files
committed
Prepare v0.5.0 release
1 parent 1fe327b commit 950c459

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
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+
## 0.5.0 (2016-01-08)
4+
5+
* Feature: Add history support
6+
(#40 by @clue)
7+
8+
* Feature: Add autocomplete support
9+
(#41 by @clue)
10+
11+
* Feature: Suggest using ext-mbstring, otherwise use regex fallback
12+
(#42 by @clue)
13+
14+
* Remove / BC break: Remove undocumented and low quality skeletons/helpers for
15+
`Buffer`, `ProgressBar` and `Spinner` (mostly dead code)
16+
(#39, #43 by @clue)
17+
18+
* First class support for PHP 5.3 through PHP 7 and HHVM
19+
(#44 by @clue)
20+
21+
* Simplify and restructure examples
22+
(#45 by @clue)
23+
324
## 0.4.0 (2016-09-27)
425

526
* Feature / BC break: The `Stdio` is now a well-behaving duplex stream

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# clue/stdio-react [![Build Status](https://travis-ci.org/clue/php-stdio-react.svg?branch=master)](https://travis-ci.org/clue/php-stdio-react)
22

3-
Async, event-driven and UTF-8 aware standard console input & output (STDIN, STDOUT) for React PHP
3+
Async, event-driven and UTF-8 aware console input & output (STDIN, STDOUT), built on top of for React PHP
44

55
**Table of Contents**
66

@@ -24,8 +24,6 @@ Async, event-driven and UTF-8 aware standard console input & output (STDIN, STDO
2424
* [License](#license)
2525
* [More](#more)
2626

27-
> Note: This project is in beta stage! Feel free to report any issues you encounter.
28-
2927
## Quickstart example
3028

3129
Once [installed](#install), you can use the following code to present a prompt in a CLI program:
@@ -551,7 +549,7 @@ The recommended way to install this library is [through Composer](https://getcom
551549
This will install the latest supported version:
552550

553551
```bash
554-
$ composer require clue/stdio-react:^0.4
552+
$ composer require clue/stdio-react:^0.5
555553
```
556554

557555
More details and upgrade guides can be found in the [CHANGELOG](CHANGELOG.md).

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "clue/stdio-react",
3-
"description": "Async standard console input & output (STDIN, STDOUT)",
4-
"keywords": ["stdio", "stdin", "stdout", "readline", "ReactPHP", "async"],
3+
"description": "Async, event-driven console input & output (STDIN, STDOUT), built on top of React PHP",
4+
"keywords": ["stdio", "stdin", "stdout", "readline", "autocomplete", "autocompletion", "history", "ReactPHP", "async"],
55
"homepage": "https://github.com/clue/php-stdio-react",
66
"license": "MIT",
77
"authors": [

0 commit comments

Comments
 (0)
0