Skip to content

Commit 658e2f0

Browse files
committed
[doc] bump to 0.5.0
1 parent 0b7ed75 commit 658e2f0

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 0.5.0: 2018-06-12
4+
5+
Change the field syntax to be fzf compatible.
6+
- Previously it was git style
7+
- fields starts with `0`
8+
- `1..3` results in `2, 3` (which is `0, 1, 2, 3` minus `0, 1`)
9+
- Now it is `cut` style
10+
- fields starts with `1`
11+
- `1..3` results in `1, 2, 3`
12+
313
## 0.4.0: 2018-06-03
414

515
Refactor skim into a library. With minor bug fixes:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skim"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Zhang Jinzhou <lotabout@gmail.com>"]
55
description = "Fuzzy Finder in rust!"
66
documentation = "https://github.com/lotabout/skim"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ First, add skim into your `Cargo.toml`:
395395

396396
```toml
397397
[dependencies]
398-
skim = "0.4.0"
398+
skim = "0.5.0"
399399
```
400400

401401
Then try to run this simple example:

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
set -u
1111

12-
version="0.4.0"
12+
version="0.5.0"
1313

1414
cd "$(dirname "${BASH_SOURCE[0]}")"
1515
skim_base="$(pwd)"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use clap::{App, Arg};
99
use skim::{Skim, SkimOptions};
1010
use std::env;
1111

12-
const VERSION: &str = "0.4.0";
12+
const VERSION: &str = "0.5.0";
1313

1414
const USAGE: &str = "
1515
Usage: sk [options]

0 commit comments

Comments
 (0)