Skip to content

Commit 5cf211b

Browse files
committed
bump version to 0.1.1
1 parent 5fa52db commit 5cf211b

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

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 = "codedx-client"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Dylan Halperin <[email protected]>"]
55

66
[dependencies]

src/config.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ extern crate clap;
22
extern crate reqwest;
33
extern crate url;
44

5-
/// gets us the header! macro
6-
//#[macro_use] extern crate hyper;
7-
85
use clap::{Arg, ArgMatches, App};
96
use reqwest::{RequestBuilder};
107
use url::Url;
@@ -61,7 +58,7 @@ impl ClientConfig {
6158
where F: for<'b> FnOnce(App<'a, 'b>) -> ArgMatches<'a>
6259
{
6360
let app = App::new("codedx-client")
64-
.version("0.1.0")
61+
.version(crate_version!())
6562
.about("CLI client for the Code Dx REST API")
6663
.arg(Arg::with_name("base-url")
6764
.short("b")

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
extern crate clap;
21
extern crate reqwest;
32
extern crate serde;
43
extern crate url;
54

5+
#[macro_use] extern crate clap;
66
#[macro_use] extern crate hyper;
77
#[macro_use] extern crate nom;
88
#[macro_use] extern crate serde_json;

0 commit comments

Comments
 (0)