diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f600c9d..d6872855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.3.4 + +- Fix link to README.md ([#887](https://github.com/trailofbits/necessist/pull/887)) +- Strip ANSI escapes from build and test command output (a problem affecting `forge`, for example) ([#886](https://github.com/trailofbits/necessist/pull/886)) + ## 0.3.3 - Fix a bug involving the Foundry framework's handling of extra arguments ([#884](https://github.com/trailofbits/necessist/pull/884)) diff --git a/Cargo.lock b/Cargo.lock index 7ec7908a..a591ef1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -995,7 +995,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "assert_cmd", @@ -1025,7 +1025,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.3.3" +version = "0.3.4" dependencies = [ "ansi_term", "anyhow", @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "necessist-frameworks" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/core/Cargo.toml b/core/Cargo.toml index 7e22e5b6..1390e045 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.3.3" +version = "0.3.4" edition = "2021" description = "necessist-core" diff --git a/frameworks/Cargo.toml b/frameworks/Cargo.toml index e2956414..6df411a0 100644 --- a/frameworks/Cargo.toml +++ b/frameworks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-frameworks" -version = "0.3.3" +version = "0.3.4" edition = "2021" description = "necessist-frameworks" @@ -10,7 +10,7 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-core = { version = "=0.3.3", path = "../core" } +necessist-core = { version = "=0.3.4", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 52a01c1d..659d418e 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.3.3" +version = "0.3.4" edition = "2021" description = "necessist" @@ -15,8 +15,8 @@ path = "tests/ci.rs" required-features = ["ci"] [dependencies] -necessist-core = { version = "=0.3.3", path = "../core", features = ["clap"] } -necessist-frameworks = { version = "=0.3.3", path = "../frameworks" } +necessist-core = { version = "=0.3.4", path = "../core", features = ["clap"] } +necessist-frameworks = { version = "=0.3.4", path = "../frameworks" } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.4"