From aa32ebdaff4fa146fc8553df71c52f52ce4d303d Mon Sep 17 00:00:00 2001 From: Jinzhou Zhang Date: Mon, 22 Oct 2018 22:57:57 +0800 Subject: [PATCH] version 0.5.2 --- .gitignore | 2 ++ CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- install | 2 +- src/main.rs | 2 +- 7 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 30783547..ddb5f5a8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ /target/ bin/* +.idea/ +.ropeproject/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 2629e41d..36d1c3de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.5.2: 2018-10-22 + +- fix: stop command immediately on accept or abort. +- minor optimization over ASCII inputs. +- #90: escape quotes in specified preview command + ## 0.5.1: 2018-06-24 Use [cross](https://github.com/japaric/cross) to build targets. diff --git a/Cargo.lock b/Cargo.lock index 443a5988..b3290e00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,7 +141,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "skim" -version = "0.5.1" +version = "0.5.2" dependencies = [ "clap 2.28.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e389e5b9..303f4cc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skim" -version = "0.5.1" +version = "0.5.2" authors = ["Zhang Jinzhou "] description = "Fuzzy Finder in rust!" documentation = "https://github.com/lotabout/skim" diff --git a/README.md b/README.md index bd98fef9..bbdde8a2 100644 --- a/README.md +++ b/README.md @@ -397,7 +397,7 @@ First, add skim into your `Cargo.toml`: ```toml [dependencies] -skim = "0.5.1" +skim = "0.5.2" ``` Then try to run this simple example: diff --git a/install b/install index 995c4bfc..a39b0c67 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ set -u -version="0.5.1" +version="0.5.2" cd "$(dirname "${BASH_SOURCE[0]}")" skim_base="$(pwd)" diff --git a/src/main.rs b/src/main.rs index 9ab59a5a..10136b12 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use clap::{App, Arg}; use skim::{Skim, SkimOptions}; use std::env; -const VERSION: &str = "0.5.1"; +const VERSION: &str = "0.5.2"; const USAGE: &str = " Usage: sk [options]