diff --git a/CHANGELOG.md b/CHANGELOG.md index 032338cc..6d400230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.1 + +- Upgrade `tree-sitter-go` to version 0.23.4 ([#1371](https://github.com/trailofbits/necessist/pull/1371)) +- Upgrade `swc_core` to version 9 ([#1376](https://github.com/trailofbits/necessist/pull/1376) and [#1393](https://github.com/trailofbits/necessist/pull/1393)) +- Refine regular expression used to identify times in Mocha logs ([#1378](https://github.com/trailofbits/necessist/pull/1378)) +- Allow Mocha test files to have `.js` extensions ([#1379](https://github.com/trailofbits/necessist/pull/1379)) +- Upgrade `cargo_metadata` to version 0.19 ([#1388](https://github.com/trailofbits/necessist/pull/1388)) + ## 1.0.0 - Fix caching in the Rust backend. The backend was recomputing data that was supposed to be cached. ([#1343](https://github.com/trailofbits/necessist/pull/1343)) diff --git a/Cargo.lock b/Cargo.lock index 038c36cb..2406535f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1278,7 +1278,7 @@ dependencies = [ [[package]] name = "necessist" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "assert_cmd", @@ -1309,7 +1309,7 @@ dependencies = [ [[package]] name = "necessist-backends" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "assert_cmd", @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "1.0.0" +version = "1.0.1" dependencies = [ "ansi_term", "anyhow", diff --git a/backends/Cargo.toml b/backends/Cargo.toml index e3e36aa3..67f500fa 100644 --- a/backends/Cargo.toml +++ b/backends/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-backends" -version = "1.0.0" +version = "1.0.1" edition = "2021" description = "necessist-backends" @@ -12,7 +12,7 @@ repository = "https://github.com/trailofbits/necessist" build = "build/main.rs" [dependencies] -necessist-core = { version = "=1.0.0", path = "../core" } +necessist-core = { version = "=1.0.1", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index 1546c557..cf2014db 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "1.0.0" +version = "1.0.1" edition = "2021" description = "necessist-core" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 9bd95d82..239c73c2 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "1.0.0" +version = "1.0.1" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-backends = { version = "=1.0.0", path = "../backends" } -necessist-core = { version = "=1.0.0", path = "../core", features = ["clap"] } +necessist-backends = { version = "=1.0.1", path = "../backends" } +necessist-core = { version = "=1.0.1", path = "../core", features = ["clap"] } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.5"