diff --git a/CHANGELOG.md b/CHANGELOG.md index 66818fde..1978037e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 0.9.2: 2020-10-24 + +Feature: +- new action `refresh-cmd`: call the interactive command and refresh the + items accordingly. +- new action `refresh-preview`: call the preview command and refresh the + preview display. Will only refresh if the preview window is shown. + +Fix: +- zsh corrupt `REPORTTIME` settings. +- [#359](https://github.com/lotabout/skim/issues/359) panic with multi-byte and regex +- [#361](https://github.com/lotabout/skim/issues/361) support literal space by `\ ` +- [#365](https://github.com/lotabout/skim/issues/365) new option + `--show-cmd-error` to retrieve error message of failed interactive command + and display as items. Served as a debug helper. + ## 0.9.1: 2020-10-20 Feature: diff --git a/Cargo.lock b/Cargo.lock index 74206af4..888caf38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -494,7 +494,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.9.1" +version = "0.9.2" dependencies = [ "beef 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 587c5724..cff2401c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.9.1" +version = "0.9.2" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/install b/install index 2203b55d..88873987 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.9.1" +version="0.9.2" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)"