From b4de43766bf26be029b98dc7911afb8ab3644738 Mon Sep 17 00:00:00 2001 From: Jinzhou Zhang Date: Sun, 22 Sep 2019 07:55:51 +0800 Subject: [PATCH] version 0.6.9 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- install | 2 +- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0d85030..b0b0b79a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## 0.6.9: 2019-09-22 + +Bug fixes: +- [PR #171](https://github.com/lotabout/skim/pull/171) + search with more than one multi-byte condition would crash skim. +- [#194](https://github.com/lotabout/skim/issues/194) + color not working with ag +- [#196](https://github.com/lotabout/skim/issues/196) + `+` in execute expression was eaten by skim +- bind `Home` key to `begining-of-line` by default. +- [#192](https://github.com/lotabout/skim/issues/192) + Prompt was eaten in shell completion +- [#205](https://github.com/lotabout/skim/issues/205) + tabstop of selection was initialized to `0`, now to `8`. +- [#207](https://github.com/lotabout/skim/issues/207) + color config not working for header + ## 0.6.8: 2019-06-23 Feature: diff --git a/Cargo.lock b/Cargo.lock index 143ea07a..a0e48437 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -356,7 +356,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.6.8" +version = "0.6.9" 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 7a316453..dba3ea61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.6.8" +version = "0.6.9" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/README.md b/README.md index 30162b6d..156057b0 100644 --- a/README.md +++ b/README.md @@ -368,7 +368,7 @@ First, add skim into your `Cargo.toml`: ```toml [dependencies] -skim = "0.6.8" +skim = "0.6.9" ``` Then try to run this simple example: diff --git a/install b/install index 38c30f3b..b7c8cfc9 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.6.8" +version="0.6.9" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)"