mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
version 0.5.2
This commit is contained in:
parent
0431f69af9
commit
aa32ebdaff
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -11,3 +11,5 @@
|
|||
/target/
|
||||
|
||||
bin/*
|
||||
.idea/
|
||||
.ropeproject/
|
||||
|
|
|
|||
|
|
@ -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
2
Cargo.lock
generated
|
|
@ -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)",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
2
install
2
install
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
set -u
|
||||
|
||||
version="0.5.1"
|
||||
version="0.5.2"
|
||||
|
||||
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||||
skim_base="$(pwd)"
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue