From fb8cb231994e5a8a0368e2efc253b60f68193a4f Mon Sep 17 00:00:00 2001 From: Cheney Date: Fri, 20 Nov 2015 23:22:54 +0800 Subject: [PATCH] add changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..05d04f7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# ChangeLog + +### 1.1 - 2015-11-20 + +* #12 Add support for key // +* Only enter raw mode as needed (calling `Readline()`), program will receive signal(e.g. Ctrl+C) if not interact with `readline`. +* Bugs fixed for `PrefixCompleter` +* 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. +* Customable Interrupt/EOF prompt in `Config` +* #17 Change atomic package to use 32bit function to let it runnable on arm 32bit devices +* Provides a new password user experience(`readline.ReadPasswordEx()`). + +### 1.0 - 2015-10-14 + +* Initial public release.