Skip to content

Commit

Permalink
Set the version properly and bump to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zummenix committed Feb 5, 2017
1 parent 5a7ac42 commit 4a2ff22
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
9 changes: 1 addition & 8 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mprovision"
version = "1.0.1"
version = "2.0.0"
authors = ["Aleksey Kuznetsov <[email protected]>"]

[[bin]]
Expand All @@ -10,7 +10,6 @@ doc = false
test = true

[dependencies]
version = "2.0.1"
plist = "0.1.0"
chrono = "~0.2.0" # used in plist.
memmem = "0.1.1"
Expand Down
1 change: 1 addition & 0 deletions src/bin/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ pub fn parse<I, S>(args: I) -> Result
{
let app = App::new("mprovision")
.about("A tool that helps iOS developers to manage mobileprovision files.")
.version(crate_version!())
.subcommand(SubCommand::with_name("list")
.about("Lists provisioning profiles")
.display_order(0)
Expand Down
4 changes: 1 addition & 3 deletions src/bin/main.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@

extern crate mprovision;
#[macro_use(version)]
extern crate version;
extern crate chrono;
#[cfg(test)]
#[macro_use(expect)]
extern crate expectest;
#[macro_use(crate_version)]
extern crate clap;

use mprovision as mp;
Expand Down

0 comments on commit 4a2ff22

Please sign in to comment.