Skip to content

Commit

Permalink
Auto merge of #30 - kbknapp:issue-29, r=kbknapp
Browse files Browse the repository at this point in the history
Issue 29
  • Loading branch information
homu committed Dec 6, 2016
2 parents 528b9ae + 8ba41f2 commit 1519e29
Show file tree
Hide file tree
Showing 14 changed files with 448 additions and 219 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: rust
rust:
- nightly
- nightly-2016-03-22
# - nightly-2016-03-22
- beta
- stable
matrix:
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<a name="v0.3.0"></a>
## v0.3.0 (2016-12-05)


#### Features

* adds a --manifest-path and --lockfile-path to allow use with other projects ([5f886d27](https://github.com/kbknapp/cargo-outdated/commit/5f886d27d3fefbc0b7fec9ffef651c137f58420d), closes [#29](https://github.com/kbknapp/cargo-outdated/issues/29))

<a name="v0.2.0"></a>
## v0.2.0

* **Exit Codes:** adds feature for custom exit code on new vers ([61c8bb9b](https://github.com/kbknapp/cargo-outdated/commit/61c8bb9b52af8745fd16fad646bc2f4dcce336c7), closes [#23](https://github.com/kbknapp/cargo-outdated/issues/23))

#### Improvements

* sort output ([b137e050](https://github.com/kbknapp/cargo-outdated/commit/b137e050ffb861f7ff725324be5cdb527d724a49))


<a name="v0.1.3"></a>
## v0.1.3 (2015-11-14)

Expand Down
229 changes: 198 additions & 31 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-outdated"
version = "0.2.0"
version = "0.3.0"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["*.png"]
description = "Cargo subcommand for displaying when dependencies are out of date"
Expand All @@ -13,13 +13,13 @@ keywords = ["cargo", "subcommand", "dependencies", "cargo-subcommand", "deps"]
name = "cargo-outdated"

[dependencies]
clap = "~2.4.0"
toml = "0.1"
semver = "0.2"
tabwriter = "0.1"
tempdir = "0.3"
ansi_term = {version = "0.7", optional = true}
clippy = {version = "=0.0.64", optional = true}
clap = "~2.19.1"
toml = "~0.2.1"
semver = "~0.5.1"
tabwriter = "~0.1"
tempdir = "~0.3.5"
ansi_term = {version = "0.9", optional = true}
clippy = {version = "=0.0.103", optional = true}

[features]
default = ["color"]
Expand Down
Loading

0 comments on commit 1519e29

Please sign in to comment.