diff --git a/CHANGELOG.md b/CHANGELOG.md index 58956b1..9892906 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## [0.4.6] - 2022-06-16 + +## Changed + +- Updated SPDX dataset + +## Fixed + +- Fix silent failures in file I/O when using the CLI + ## [0.4.5] - 2022-04-09 ## Changed diff --git a/Cargo.toml b/Cargo.toml index c95e869..f068729 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askalono" -version = "0.4.5" +version = "0.4.6" edition = "2018" description = "a library to detect the contents of license files" license = "Apache-2.0" diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 85f0c5f..996f779 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -34,7 +34,7 @@ checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" [[package]] name = "askalono" -version = "0.4.5" +version = "0.4.6" dependencies = [ "anyhow", "flate2", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "askalono-cli" -version = "0.4.5" +version = "0.4.6" dependencies = [ "anyhow", "askalono", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 24f6814..095172d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askalono-cli" -version = "0.4.5" +version = "0.4.6" edition = "2018" description = "a tool to detect the contents of license files" license = "Apache-2.0" @@ -18,7 +18,7 @@ include = [ ] [dependencies] -askalono = { version = "0.4.5", path = "../" } +askalono = { version = "0.4.6", path = "../" } clap = "2.32.0" env_logger = "0.7" anyhow = "1.0.44" @@ -33,7 +33,7 @@ structopt = "0.2.15" difference = { version = "2.0.0", optional = true } [build-dependencies] -askalono = { version = "0.4.5", path = "../" } +askalono = { version = "0.4.6", path = "../" } [[bin]] name = "askalono" diff --git a/extras/wasm/Cargo.lock b/extras/wasm/Cargo.lock index 2512418..08eacad 100644 --- a/extras/wasm/Cargo.lock +++ b/extras/wasm/Cargo.lock @@ -25,7 +25,7 @@ checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" [[package]] name = "askalono" -version = "0.4.5" +version = "0.4.6" dependencies = [ "anyhow", "flate2", diff --git a/justfile b/justfile index 9c7de7f..7bdc516 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,6 @@ init: all toolchain="" +cmds="": init cargo {{toolchain}} {{cmds}} cd cli && cargo {{toolchain}} {{cmds}} - cd extras/lambda && cargo {{toolchain}} {{cmds}} cd extras/wasm && cargo {{toolchain}} {{cmds}} lint toolchain="":