File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.4.0 (2016-09-27)
4
+
5
+ * Feature / BC break: The ` Stdio ` is now a well-behaving duplex stream
6
+ (#35 by @clue )
7
+
8
+ * Feature / BC break: The ` Readline ` is now a well-behaving readable stream
9
+ (#32 by @clue )
10
+
11
+ * Feature: Add ` Readline::getPrompt() ` helper
12
+ (#33 by @clue )
13
+
14
+ * Feature / Fix: All unsupported special keys, key codes and byte sequences will now be ignored
15
+ (#36 , #30 , #19 , #38 by @clue )
16
+
17
+ * Fix: Explicitly redraw prompt on empty input
18
+ (#37 by @clue )
19
+
20
+ * Fix: Writing data that contains multiple newlines will no longer end up garbled
21
+ (#34 , #35 by @clue )
22
+
3
23
## 0.3.1 (2015-11-26)
4
24
5
25
* Fix: Support calling ` Readline::setInput() ` during ` line ` event
Original file line number Diff line number Diff line change @@ -329,8 +329,10 @@ $stdin = $stdio->getInput();
329
329
The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
330
330
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
331
331
332
+ This will install the latest supported version:
333
+
332
334
``` bash
333
- $ composer require clue/stdio-react:~ 0.3.0
335
+ $ composer require clue/stdio-react:^0.4
334
336
```
335
337
336
338
More details and upgrade guides can be found in the [ CHANGELOG] ( CHANGELOG.md ) .
You can’t perform that action at this time.
0 commit comments