version 0.5.2

This commit is contained in:
Jinzhou Zhang 2018-10-22 22:57:57 +08:00
parent 0431f69af9
commit aa32ebdaff
7 changed files with 13 additions and 5 deletions

2
.gitignore vendored
View file

@ -11,3 +11,5 @@
/target/
bin/*
.idea/
.ropeproject/

View file

@ -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.

2
Cargo.lock generated
View file

@ -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)",

View file

@ -1,6 +1,6 @@
[package]
name = "skim"
version = "0.5.1"
version = "0.5.2"
authors = ["Zhang Jinzhou <lotabout@gmail.com>"]
description = "Fuzzy Finder in rust!"
documentation = "https://github.com/lotabout/skim"

View file

@ -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:

View file

@ -9,7 +9,7 @@
set -u
version="0.5.1"
version="0.5.2"
cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"

View file

@ -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]