From d20fb6c94f3b994ea882f371ca810afc0456b5da Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Sat, 31 Aug 2024 16:45:47 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 6 +++--- backends/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- necessist/Cargo.toml | 6 +++--- 5 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97eca4e4..24bfd67d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.7.0 + +- Update `libsqlite3-sys` to version 0.30 ([#1260](https://github.com/trailofbits/necessist/pull/1260)) +- Update `swc_core` to version 0.102 ([#1263](https://github.com/trailofbits/necessist/pull/1263)) +- Do not consider `TestMain` a test in Go backend ([#1266](https://github.com/trailofbits/necessist/pull/1266)) +- Add `Helper` as an ignored method in the Go backend ([#1276](https://github.com/trailofbits/necessist/pull/1276)) +- FEATURE: Walk functions that are declared within the same files as the tests that call them ([#1268](https://github.com/trailofbits/necessist/pull/1268)) +- Update `tree-sitter` and `tree-sitter-go` to version 0.23 ([#1279](https://github.com/trailofbits/necessist/pull/1279)) + ## 0.6.4 - Update `windows-sys` to version 0.59 ([#1231](https://github.com/trailofbits/necessist/pull/1231)) diff --git a/Cargo.lock b/Cargo.lock index 71761f2d..c273384d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1143,7 +1143,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.6.4" +version = "0.7.0" dependencies = [ "anyhow", "assert_cmd", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "necessist-backends" -version = "0.6.4" +version = "0.7.0" dependencies = [ "anyhow", "assert_cmd", @@ -1210,7 +1210,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.6.4" +version = "0.7.0" dependencies = [ "ansi_term", "anyhow", diff --git a/backends/Cargo.toml b/backends/Cargo.toml index 7dae73cf..02ea55b5 100644 --- a/backends/Cargo.toml +++ b/backends/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-backends" -version = "0.6.4" +version = "0.7.0" 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.4", path = "../core" } +necessist-core = { version = "=0.7.0", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index 86d4ef0d..be767186 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.6.4" +version = "0.7.0" edition = "2021" description = "necessist-core" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 034b8c29..d063f438 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.6.4" +version = "0.7.0" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-backends = { version = "=0.6.4", path = "../backends" } -necessist-core = { version = "=0.6.4", path = "../core", features = ["clap"] } +necessist-backends = { version = "=0.7.0", path = "../backends" } +necessist-core = { version = "=0.7.0", path = "../core", features = ["clap"] } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.5"