Skip to content

Commit 4338708

Browse files
committed
Prepare v0.2.0 release
1 parent 6ddec4c commit 4338708

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

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

3+
## 0.2.0 (2015-05-17)
4+
5+
* Feature: Support echo replacements (asterisk for password prompts)
6+
(#11)
7+
8+
```php
9+
$stdio->getReadline()->setEcho('*');
10+
```
11+
12+
* Feature: Add accessors for text input buffer and current cursor position
13+
(#8 and #9)
14+
15+
```php
16+
$stdio->getReadline()->setInput('hello);
17+
$stdio->getReadline()->getCursorPosition();
18+
```
19+
20+
* Feature: All setters now return self to allow easy method chaining
21+
(#7)
22+
23+
```php
24+
$stdio->getReadline()->setPrompt('Password: ')->setEcho('*')->setInput('secret');
25+
```
26+
27+
* Feature: Only redraw() readline when necessary
28+
(#10 and #14)
29+
330
## 0.1.0 (2014-09-08)
431

532
* First tagged release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The recommended way to install this library is [through composer](https://getcom
3535
```JSON
3636
{
3737
"require": {
38-
"clue/stdio-react": "~0.1.0"
38+
"clue/stdio-react": "~0.2.0"
3939
}
4040
}
4141
```

0 commit comments

Comments
 (0)