Skip to content

Commit 708f7b5

Browse files
committed
[doc] release 0.3.2 for minor enhancements
1 parent 224af6e commit 708f7b5

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

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

3+
## 0.3.2: 2018-01-18
4+
Some minor enhancements that might comes handy.
5+
- Reserve all fzf options, so that skim can be a drop-in replacement of fzf.
6+
- Fix: the number of columns a unicode character occupies
7+
- Accept multiple values for most options. So that you can safely put them
8+
in `$SKIM_DEFAULT_OPTIONS` and override it in command line.
9+
10+
Thanks to @magnetophon for the bug report and feature requests.
11+
312
## 0.3.1: 2017-12-04
413
Support more options, and reserve several others. The purpose is to reuse
514
`fzf.vim` as much as possible.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.1"
3+
version = "0.3.2"
44
authors = ["Mark Wallace <lotabout@gmail.com>"]
55
description = "Fuzzy Finder in rust!"
66
documentation = "https://github.com/lotabout/skim"

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.3.1"
12+
version="0.3.2"
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
@@ -40,7 +40,7 @@ use std::fs::File;
4040
use std::os::unix::io::{FromRawFd, IntoRawFd};
4141
use clap::{Arg, App};
4242

43-
const VERSION: &str = "0.3.1";
43+
const VERSION: &str = "0.3.2";
4444

4545
const USAGE : &str = "
4646
Usage: sk [options]

0 commit comments

Comments
 (0)