diff --git a/CHANGELOG.md b/CHANGELOG.md index 18612a2b..67ea1ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.5.0 + +- Fix mishandling of multibyte characters in the Go framework ([#1127](https://github.com/trailofbits/necessist/pull/1127)) +- FEATURE: More informative summaries, e.g., "k removal candidates in m tests in n test files". Also, tests and test files are counted even if they contain no removal candidates. (fixes [#850](https://github.com/trailofbits/necessist/issues/850)) ([#1128](https://github.com/trailofbits/necessist/pull/1128)) + ## 0.4.9 - Add `panic` to list of ignored Go functions ([#1093](https://github.com/trailofbits/necessist/pull/1093)) diff --git a/Cargo.lock b/Cargo.lock index a5507a22..6444bd3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1021,7 +1021,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.4.9" +version = "0.5.0" dependencies = [ "anyhow", "assert_cmd", @@ -1053,7 +1053,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.4.9" +version = "0.5.0" dependencies = [ "ansi_term", "anyhow", @@ -1090,7 +1090,7 @@ dependencies = [ [[package]] name = "necessist-frameworks" -version = "0.4.9" +version = "0.5.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/core/Cargo.toml b/core/Cargo.toml index e83b55f0..4db9c5b8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.4.9" +version = "0.5.0" edition = "2021" description = "necessist-core" diff --git a/frameworks/Cargo.toml b/frameworks/Cargo.toml index 68f1c93a..c4e29768 100644 --- a/frameworks/Cargo.toml +++ b/frameworks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-frameworks" -version = "0.4.9" +version = "0.5.0" edition = "2021" description = "necessist-frameworks" @@ -10,7 +10,7 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-core = { version = "=0.4.9", path = "../core" } +necessist-core = { version = "=0.5.0", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 146d5ad9..689dce23 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.4.9" +version = "0.5.0" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-core = { version = "=0.4.9", path = "../core", features = ["clap"] } -necessist-frameworks = { version = "=0.4.9", path = "../frameworks" } +necessist-core = { version = "=0.5.0", path = "../core", features = ["clap"] } +necessist-frameworks = { version = "=0.5.0", path = "../frameworks" } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.5"