diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f0b723d..2ceaf8d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## 0.8.1: 2020-02-23 + +Feature: + +- [#63](https://github.com/lotabout/skim/issues/63) could save to and read + from history for query and command query via `--history` and `--cmd-history` +- [#273](https://github.com/lotabout/skim/issues/273) inline-info now has + spinner +- [#276](https://github.com/lotabout/skim/issues/276) new action: + `if-non-matched` will execute if non of the items matches +- reduce memory footprint +- [#248](https://github.com/lotabout/skim/issues/248) implement `{n}` + placeholder, used to refer to current items's index(zero based). + +Bug fixes: + +- [PR #279](https://github.com/lotabout/skim/pull/279) exit gracefully on + SIGPIPE error. (e.g. Ctrl-C on pipes) +- [#276](https://github.com/lotabout/skim/issues/276) `execute` panic on zero + results +- [#278](https://github.com/lotabout/skim/issues/278) `NUL` character not + working in preview command +- handle `print0` correctly in filter mode +- Preview's fields now based on original text, not transformed. +- [#295](https://github.com/lotabout/skim/issues/295) skim not exits + sometimes (occasionally happens on Ubuntu) + ## 0.8.0: 2020-02-23 **Breaking Changes in API** diff --git a/Cargo.lock b/Cargo.lock index 9da987e7..3fe0fef0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -539,7 +539,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.8.0" +version = "0.8.1" dependencies = [ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index d040126c..727ef97e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.8.0" +version = "0.8.1" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/README.md b/README.md index 482b0a4e..f64f9e45 100644 --- a/README.md +++ b/README.md @@ -378,7 +378,7 @@ First, add skim into your `Cargo.toml`: ```toml [dependencies] -skim = "0.7.0" +skim = "0.8.1" ``` Then try to run this simple example: diff --git a/install b/install index e943a485..6c1065ff 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.8.0" +version="0.8.1" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)"