diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b19e340..b7e66f2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 0.6.4: 2019-03-26 + +Fix: #153 build fail with rust 2018 (1.31.0) + ## 0.6.3: 2019-03-25 Feature: diff --git a/Cargo.lock b/Cargo.lock index 8ab7f712..84a52fa7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -328,7 +328,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.6.3" +version = "0.6.4" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "derive_builder 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index ca657758..6fd4da28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.6.3" +version = "0.6.4" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/README.md b/README.md index 0b2070a9..f067623a 100644 --- a/README.md +++ b/README.md @@ -414,7 +414,7 @@ First, add skim into your `Cargo.toml`: ```toml [dependencies] -skim = "0.6.3" +skim = "0.6.4" ``` Then try to run this simple example: diff --git a/install b/install index 485385d8..6fe6bc1b 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.6.3" +version="0.6.4" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)"