update version to 0.2.1-beta.2

This commit is contained in:
Mark Wallace 2017-01-19 22:21:48 +08:00
parent 50d2344f05
commit 4f4f49b7e9
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -1,6 +1,6 @@
[root]
name = "skim"
version = "0.2.1-beta.1"
version = "0.2.1-beta.2"
dependencies = [
"clippy 0.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package]
name = "skim"
version = "0.2.1-beta.1"
version = "0.2.1-beta.2"
authors = ["Mark Wallace <lotabout@gmail.com>"]
[[bin]]

View file

@ -9,7 +9,7 @@
set -u
version="0.2.1-beta.1"
version="0.2.1-beta.2"
cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"

View file

@ -144,7 +144,7 @@ fn real_main() -> i32 {
// print version
if options.opt_present("version") {
println!("0.2.1-beta.1");
println!("0.2.1-beta.2");
return 0;
}