Skip to content

Commit

Permalink
version 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lotabout committed Oct 22, 2018
1 parent 0431f69 commit aa32ebd
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
/target/

bin/*
.idea/
.ropeproject/
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skim"
version = "0.5.1"
version = "0.5.2"
authors = ["Zhang Jinzhou <[email protected]>"]
description = "Fuzzy Finder in rust!"
documentation = "https://github.com/lotabout/skim"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

set -u

version="0.5.1"
version="0.5.2"

cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit aa32ebd

Please sign in to comment.