Skip to content

Commit

Permalink
Prepare v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed May 17, 2015
1 parent 6ddec4c commit 4338708
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## 0.2.0 (2015-05-17)

* Feature: Support echo replacements (asterisk for password prompts)
(#11)

```php
$stdio->getReadline()->setEcho('*');
```

* Feature: Add accessors for text input buffer and current cursor position
(#8 and #9)

```php
$stdio->getReadline()->setInput('hello);
$stdio->getReadline()->getCursorPosition();
```

* Feature: All setters now return self to allow easy method chaining
(#7)

```php
$stdio->getReadline()->setPrompt('Password: ')->setEcho('*')->setInput('secret');
```

* Feature: Only redraw() readline when necessary
(#10 and #14)

## 0.1.0 (2014-09-08)

* First tagged release
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The recommended way to install this library is [through composer](https://getcom
```JSON
{
"require": {
"clue/stdio-react": "~0.1.0"
"clue/stdio-react": "~0.2.0"
}
}
```
Expand Down

0 comments on commit 4338708

Please sign in to comment.