1# ChangeLog
2
3### 1.4 - 2016-07-25
4
5* [#60][60] Support dynamic autocompletion
6* Fix ANSI parser on Windows
7* Fix wrong column width in complete mode on Windows
8* Remove dependent package "golang.org/x/crypto/ssh/terminal"
9
10### 1.3 - 2016-05-09
11
12* [#38][38] add SetChildren for prefix completer interface
13* [#42][42] improve multiple lines compatibility
14* [#43][43] remove sub-package(runes) for gopkg compatibility
15* [#46][46] Auto complete with space prefixed line
16* [#48][48]	support suspend process (ctrl+Z)
17* [#49][49] fix bug that check equals with previous command
18* [#53][53] Fix bug which causes integer divide by zero panicking when input buffer is empty
19
20### 1.2 - 2016-03-05
21
22* Add a demo for checking password strength [example/readline-pass-strength](https://github.com/chzyer/readline/blob/master/example/readline-pass-strength/readline-pass-strength.go), , written by [@sahib](https://github.com/sahib)
23* [#23][23], support stdin remapping
24* [#27][27], add a `UniqueEditLine` to `Config`, which will erase the editing line after user submited it, usually use in IM.
25* Add a demo for multiline [example/readline-multiline](https://github.com/chzyer/readline/blob/master/example/readline-multiline/readline-multiline.go) which can submit one SQL by multiple lines.
26* Supports performs even stdin/stdout is not a tty.
27* Add a new simple apis for single instance, check by [here](https://github.com/chzyer/readline/blob/master/std.go). It need to save history manually if using this api.
28* [#28][28], fixes the history is not working as expected.
29* [#33][33], vim mode now support `c`, `d`, `x (delete character)`, `r (replace character)`
30
31### 1.1 - 2015-11-20
32
33* [#12][12] Add support for key `<Delete>`/`<Home>`/`<End>`
34* Only enter raw mode as needed (calling `Readline()`), program will receive signal(e.g. Ctrl+C) if not interact with `readline`.
35* Bugs fixed for `PrefixCompleter`
36* Press `Ctrl+D` in empty line will cause `io.EOF` in error, Press `Ctrl+C` in anytime will cause `ErrInterrupt` instead of `io.EOF`, this will privodes a shell-like user experience.
37* Customable Interrupt/EOF prompt in `Config`
38* [#17][17] Change atomic package to use 32bit function to let it runnable on arm 32bit devices
39* Provides a new password user experience(`readline.ReadPasswordEx()`).
40
41### 1.0 - 2015-10-14
42
43* Initial public release.
44
45[12]: https://github.com/chzyer/readline/pull/12
46[17]: https://github.com/chzyer/readline/pull/17
47[23]: https://github.com/chzyer/readline/pull/23
48[27]: https://github.com/chzyer/readline/pull/27
49[28]: https://github.com/chzyer/readline/pull/28
50[33]: https://github.com/chzyer/readline/pull/33
51[38]: https://github.com/chzyer/readline/pull/38
52[42]: https://github.com/chzyer/readline/pull/42
53[43]: https://github.com/chzyer/readline/pull/43
54[46]: https://github.com/chzyer/readline/pull/46
55[48]: https://github.com/chzyer/readline/pull/48
56[49]: https://github.com/chzyer/readline/pull/49
57[53]: https://github.com/chzyer/readline/pull/53
58[60]: https://github.com/chzyer/readline/pull/60
59