Skip to content

Commit

Permalink
[doc] for new release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lotabout committed Dec 4, 2017
1 parent 3c49c3e commit 26dd166
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 21 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 0.3.1: 2017-12-04
Support more options, and reserve several others. The purpose is to reuse
`fzf.vim` as much as possible.
- `--print0`: use NUL(\0) as field separator for output.
- `--read0`: read input delimited by NUL(\0) characters
- `--tabstop`: allow customizing tabstop (default to 8).
- `--no-hscroll`: disable hscroll on match.
- reserve several other options, skim will do nothing on them instead of throwing errors.

## 0.3.0: 2017-09-21
This release starts from adding `--height` featuren, ends up a big change in
the code base.
Expand Down
36 changes: 18 additions & 18 deletions 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.3.0"
version = "0.3.1"
authors = ["Mark Wallace <[email protected]>"]
description = "Fuzzy Finder in rust!"
documentation = "https://github.com/lotabout/skim"
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.3.0"
version="0.3.1"

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 @@ -40,7 +40,7 @@ use std::fs::File;
use std::os::unix::io::{FromRawFd, IntoRawFd};
use clap::{Arg, App};

const VERSION: &'static str = "0.3.0";
const VERSION: &'static str = "0.3.1";

const USAGE : &'static str = "
Usage: sk [options]
Expand Down

0 comments on commit 26dd166

Please sign in to comment.