Skip to content

Commit a7a2b8f

Browse files
committed
Prepare v0.3.1 release
1 parent 30bd22a commit a7a2b8f

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

CHANGELOG.md

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

3+
## 0.3.1 (2015-11-26)
4+
5+
* Fix: Support calling `Readline::setInput()` during `line` event
6+
(#28)
7+
8+
```php
9+
$stdio->on('line', function ($line) use ($stdio) {
10+
$stdio->getReadline()->setInput($line . '!');
11+
});
12+
```
13+
314
## 0.3.0 (2015-05-18)
415

516
* Feature: Support multi-byte UTF-8 characters and account for cell width

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -263,17 +263,15 @@ $stdin = $stdio->getInput();
263263

264264
## Install
265265

266-
The recommended way to install this library is [through composer](https://getcomposer.org).
267-
[New to composer?](https://getcomposer.org/doc/00-intro.md)
266+
The recommended way to install this library is [through Composer](https://getcomposer.org).
267+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
268268

269-
```JSON
270-
{
271-
"require": {
272-
"clue/stdio-react": "~0.3.0"
273-
}
274-
}
269+
```bash
270+
$ composer require clue/stdio-react:~0.3.0
275271
```
276272

273+
More details and upgrade guides can be found in the [CHANGELOG](CHANGELOG.md).
274+
277275
## License
278276

279277
MIT

0 commit comments

Comments
 (0)