Skip to content

Commit 177b163

Browse files
committed
Release 0.4.6
1 parent c3b95f6 commit 177b163

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
## [0.4.6] - 2022-06-16
10+
11+
## Changed
12+
13+
- Updated SPDX dataset
14+
15+
## Fixed
16+
17+
- Fix silent failures in file I/O when using the CLI
18+
919
## [0.4.5] - 2022-04-09
1020

1121
## Changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askalono"
3-
version = "0.4.5"
3+
version = "0.4.6"
44
edition = "2018"
55
description = "a library to detect the contents of license files"
66
license = "Apache-2.0"

cli/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askalono-cli"
3-
version = "0.4.5"
3+
version = "0.4.6"
44
edition = "2018"
55
description = "a tool to detect the contents of license files"
66
license = "Apache-2.0"
@@ -18,7 +18,7 @@ include = [
1818
]
1919

2020
[dependencies]
21-
askalono = { version = "0.4.5", path = "../" }
21+
askalono = { version = "0.4.6", path = "../" }
2222
clap = "2.32.0"
2323
env_logger = "0.7"
2424
anyhow = "1.0.44"
@@ -33,7 +33,7 @@ structopt = "0.2.15"
3333
difference = { version = "2.0.0", optional = true }
3434

3535
[build-dependencies]
36-
askalono = { version = "0.4.5", path = "../" }
36+
askalono = { version = "0.4.6", path = "../" }
3737

3838
[[bin]]
3939
name = "askalono"

extras/wasm/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

justfile

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ init:
88
all toolchain="" +cmds="": init
99
cargo {{toolchain}} {{cmds}}
1010
cd cli && cargo {{toolchain}} {{cmds}}
11-
cd extras/lambda && cargo {{toolchain}} {{cmds}}
1211
cd extras/wasm && cargo {{toolchain}} {{cmds}}
1312

1413
lint toolchain="":

0 commit comments

Comments
 (0)