diff --git a/CHANGELOG.md b/CHANGELOG.md index b7e66f2b..71f8b506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 0.6.5: 2019-03-26 + +Bug Fixes: + +- #155: screen is not fully cleared upon resize +- #156: preview dies on large chunk of input +- #157: cursor overflow on empty input +- #154: reduce CPU usage on idle +- wrong matches on empty input lines + ## 0.6.4: 2019-03-26 Fix: #153 build fail with rust 2018 (1.31.0) diff --git a/Cargo.lock b/Cargo.lock index 878b85ad..1194dda3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.6.4" +version = "0.6.5" 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 085743b6..1bb8b1d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.6.4" +version = "0.6.5" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/README.md b/README.md index f067623a..f4c8ae2a 100644 --- a/README.md +++ b/README.md @@ -414,7 +414,7 @@ First, add skim into your `Cargo.toml`: ```toml [dependencies] -skim = "0.6.4" +skim = "0.6.5" ``` Then try to run this simple example: diff --git a/install b/install index 6fe6bc1b..d2d6660e 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.6.4" +version="0.6.5" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)"