diff --git a/CHANGELOG.md b/CHANGELOG.md index 9502b16..244c294 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Added +- [PR#41](https://github.com/EmbarkStudios/spdx/pull/41) added a `NOASSERTION` license. Hopefully this will become part of [spec](https://github.com/spdx/spdx-spec/issues/50) in the future. + ## [0.6.0] - 2021-08-16 ### Changed - [PR#40](https://github.com/EmbarkStudios/spdx/pull/40) updated the SPDX license list from `3.11` => `3.14`. diff --git a/Cargo.toml b/Cargo.toml index 2400c37..6eb0fed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "spdx" version = "0.6.0" -authors = ["Embark ", "Jake Shadle "] +authors = [ + "Embark ", + "Jake Shadle ", +] description = "Helper crate for SDPX expressions" edition = "2018" homepage = "https://github.com/EmbarkStudios/spdx" @@ -11,16 +14,11 @@ keywords = ["spdx", "license"] license = "MIT OR Apache-2.0" repository = "https://github.com/EmbarkStudios/spdx" -include = [ - "Cargo.toml", - "LICENSE-APACHE", - "LICENSE-MIT", - "src/**/*", -] +include = ["Cargo.toml", "LICENSE-APACHE", "LICENSE-MIT", "src/**/*"] [dependencies] # In most cases expressions are quite small so we can avoid heap allocations -smallvec = "1.6" +smallvec = "1.7" [dev-dependencies] # Used to print colored diffs in case of test failures