Skip to content

Commit fa611fa

Browse files
committed
Release 0.6.0
1 parent 2e60cc4 commit fa611fa

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
9+
## [0.6.0] - 2020-01-20
910
### Added
1011
- Added the `sources` check and configuration, which allows linting of crate sources
1112
- Resolved [#63](https://github.com/EmbarkStudios/cargo-deny/issues/63) by adding a dependency on [`krates`](https://crates.io/crates/krates), which allows us to easily filter out dependencies that don't match a target specified by the user via the `targets` config value.
@@ -14,10 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1415

1516
### Changed
1617
- Resolved [#85](https://github.com/EmbarkStudios/cargo-deny/issues/85) by changing the max column width from 120 to 80 and reformatting some of the help text for the CLI.
18+
- Resolved [#109](https://github.com/EmbarkStudios/cargo-deny/issues/109) by only printing a single diagnostic message for each set of duplicate version
1719

1820
### Fixed
1921
- Fixed [#96](https://github.com/EmbarkStudios/cargo-deny/issues/96) by allowing expansion of '~' rooted paths for the `[advisories.db-path]` configuration variable.
20-
- Fixed [#109](https://github.com/EmbarkStudios/cargo-deny/issues/109) by only printing a single diagnostic message for each set of duplicate version
2122

2223
## [0.5.2] - 2019-12-20
2324
### Added
@@ -117,7 +118,8 @@ Now each license has to be explicitly approved, either by listing them in `licen
117118
- Initial implementation release
118119

119120
<!-- next-url -->
120-
[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.5.2...HEAD
121+
[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.6.0...HEAD
122+
[0.6.0]: https://github.com/EmbarkStudios/cargo-deny/compare/0.5.2...0.6.0
121123
[0.5.2]: https://github.com/EmbarkStudios/cargo-deny/compare/0.5.1...0.5.2
122124
[0.5.1]: https://github.com/EmbarkStudios/cargo-deny/compare/0.5.0...0.5.1
123125
[0.5.0]: https://github.com/EmbarkStudios/cargo-deny/compare/0.4.2...0.5.0

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cargo-deny"
33
description = "Cargo plugin to help you manage large dependency graphs"
44
repository = "https://github.com/EmbarkStudios/cargo-deny"
5-
version = "0.5.2"
5+
version = "0.6.0"
66
authors = ["Embark <[email protected]>", "Jake Shadle <[email protected]>"]
77
edition = "2018"
88
license = "MIT OR Apache-2.0"
@@ -42,7 +42,6 @@ log = "0.4.8"
4242
parking_lot = "0.10.0"
4343
rayon = "1.3.0"
4444
regex = { version = "1.3.1", default-features = true }
45-
rustsec = { version = "0.16.0", features = ["vendored-openssl"] }
4645
semver = "0.9.0"
4746
serde = { version = "1.0.103", features = ["derive"] }
4847
serde_json = "1.0.44"
@@ -53,6 +52,10 @@ toml = "0.5.5"
5352
twox-hash = { version = "1.5.0", default-features = false }
5453
url = "2.1.0"
5554

55+
[dependencies.rustsec]
56+
version = "0.16.0"
57+
features = ["vendored-openssl"]
58+
5659
[dev-dependencies]
5760
# We use this for pretty printing errors
5861
difference = "2.0.0"

0 commit comments

Comments
 (0)