diff --git a/CHANGELOG.md b/CHANGELOG.md index 0456c38d..9536fa7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.3 + +- FEATURE: When a test cannot be run, show why ([#1201](https://github.com/trailofbits/necessist/pull/1201)) +- Update `swc_core` to version 0.99 ([#1204](https://github.com/trailofbits/necessist/pull/1204)) + ## 0.6.2 - Update `swc_core` to version 0.96 ([#1178](https://github.com/trailofbits/necessist/pull/1178)) diff --git a/Cargo.lock b/Cargo.lock index fb3c8424..fce04eb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1107,7 +1107,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.6.2" +version = "0.6.3" dependencies = [ "anyhow", "assert_cmd", @@ -1138,7 +1138,7 @@ dependencies = [ [[package]] name = "necessist-backends" -version = "0.6.2" +version = "0.6.3" dependencies = [ "anyhow", "assert_cmd", @@ -1173,7 +1173,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.6.2" +version = "0.6.3" dependencies = [ "ansi_term", "anyhow", diff --git a/backends/Cargo.toml b/backends/Cargo.toml index 65bdaedf..a80f81bd 100644 --- a/backends/Cargo.toml +++ b/backends/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-backends" -version = "0.6.2" +version = "0.6.3" edition = "2021" description = "necessist-backends" @@ -12,7 +12,7 @@ repository = "https://github.com/trailofbits/necessist" build = "build/main.rs" [dependencies] -necessist-core = { version = "=0.6.2", path = "../core" } +necessist-core = { version = "=0.6.3", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index e2d287f1..053a8695 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.6.2" +version = "0.6.3" edition = "2021" description = "necessist-core" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 97abe24a..9f39f87c 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.6.2" +version = "0.6.3" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-backends = { version = "=0.6.2", path = "../backends" } -necessist-core = { version = "=0.6.2", path = "../core", features = ["clap"] } +necessist-backends = { version = "=0.6.3", path = "../backends" } +necessist-core = { version = "=0.6.3", path = "../core", features = ["clap"] } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.5"