Skip to content

Commit

Permalink
Prepare v0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jan 8, 2017
1 parent 1fe327b commit 950c459
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,26 @@
# Changelog

## 0.5.0 (2016-01-08)

* Feature: Add history support
(#40 by @clue)

* Feature: Add autocomplete support
(#41 by @clue)

* Feature: Suggest using ext-mbstring, otherwise use regex fallback
(#42 by @clue)

* Remove / BC break: Remove undocumented and low quality skeletons/helpers for
`Buffer`, `ProgressBar` and `Spinner` (mostly dead code)
(#39, #43 by @clue)

* First class support for PHP 5.3 through PHP 7 and HHVM
(#44 by @clue)

* Simplify and restructure examples
(#45 by @clue)

## 0.4.0 (2016-09-27)

* Feature / BC break: The `Stdio` is now a well-behaving duplex stream
Expand Down
6 changes: 2 additions & 4 deletions README.md
@@ -1,6 +1,6 @@
# clue/stdio-react [![Build Status](https://travis-ci.org/clue/php-stdio-react.svg?branch=master)](https://travis-ci.org/clue/php-stdio-react)

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

**Table of Contents**

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

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

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

```bash
$ composer require clue/stdio-react:^0.4
$ composer require clue/stdio-react:^0.5
```

More details and upgrade guides can be found in the [CHANGELOG](CHANGELOG.md).
Expand Down
4 changes: 2 additions & 2 deletions composer.json
@@ -1,7 +1,7 @@
{
"name": "clue/stdio-react",
"description": "Async standard console input & output (STDIN, STDOUT)",
"keywords": ["stdio", "stdin", "stdout", "readline", "ReactPHP", "async"],
"description": "Async, event-driven console input & output (STDIN, STDOUT), built on top of React PHP",
"keywords": ["stdio", "stdin", "stdout", "readline", "autocomplete", "autocompletion", "history", "ReactPHP", "async"],
"homepage": "https://github.com/clue/php-stdio-react",
"license": "MIT",
"authors": [
Expand Down

0 comments on commit 950c459

Please sign in to comment.