From bf00d7ab58a336a81e44ab9d0cb37356a6252f65 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Wed, 30 Oct 2019 18:13:58 +0100 Subject: [PATCH] Release 0.3.0 (#40) --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f92187ea..bf9edc7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.3.0] - 2019-10-30 ### Added -- Added `[license.copyleft]` config, which can be used to determine what happens when a copyleft license is encountered. +- Added `[licenses.copyleft]` config, which can be used to determine what happens when a copyleft license is encountered. - Added `[bans.skip-tree]` config, which can be used to skip entire subtrees of a dependency graph when considering duplicates ### Fixed @@ -66,7 +68,8 @@ Now each license has to be explicitly approved, either by listing them in `licen ### Added - Initial implementation release -[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.3.0-beta...HEAD +[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.3.0...HEAD +[0.3.0]: https://github.com/EmbarkStudios/cargo-deny/compare/0.3.0-beta...0.3.0 [0.3.0-beta]: https://github.com/EmbarkStudios/cargo-deny/compare/0.2.5...0.3.0-beta [0.2.5]: https://github.com/EmbarkStudios/cargo-deny/compare/0.2.4...0.2.5 [0.2.4]: https://github.com/EmbarkStudios/cargo-deny/compare/0.2.3...0.2.4 diff --git a/Cargo.lock b/Cargo.lock index 83529e31..9bd12a3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "cargo-deny" -version = "0.3.0-beta" +version = "0.3.0" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "askalono 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 50b0a0f9..c93342ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cargo-deny" description = "Cargo plugin to help you manage large dependency graphs" repository = "https://github.com/EmbarkStudios/cargo-deny" -version = "0.3.0-beta" +version = "0.3.0" authors = ["Embark ", "Jake Shadle "] edition = "2018" license = "MIT OR Apache-2.0"