From b2a14ddeaa6f70d18131dea5d42730cc689868cb Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Wed, 26 Jun 2024 10:52:56 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ Cargo.lock | 6 +++--- backends/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- necessist/Cargo.toml | 6 +++--- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e3e36be..979189d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.1 + +- Don't remove expressions that end blocks in Rust code ([#1162](https://github.com/trailofbits/necessist/pull/1162)) +- Update `git2` to version 0.19 ([248cdc0](https://github.com/trailofbits/necessist/commit/248cdc0fcad5bc05e009979f51683dac476c2e56)) + ## 0.6.0 - Don't remove `const` and `type` declarations in Go code ([#1139](https://github.com/trailofbits/necessist/pull/1139)) diff --git a/Cargo.lock b/Cargo.lock index 661d3614..39c05e01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1094,7 +1094,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "assert_cmd", @@ -1126,7 +1126,7 @@ dependencies = [ [[package]] name = "necessist-backends" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "assert_cmd", @@ -1161,7 +1161,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.6.0" +version = "0.6.1" dependencies = [ "ansi_term", "anyhow", diff --git a/backends/Cargo.toml b/backends/Cargo.toml index 95db5f36..f627c37a 100644 --- a/backends/Cargo.toml +++ b/backends/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-backends" -version = "0.6.0" +version = "0.6.1" 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.0", path = "../core" } +necessist-core = { version = "=0.6.1", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5aea0eec..894d13e5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.6.0" +version = "0.6.1" edition = "2021" description = "necessist-core" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index b0df46c2..e60e125b 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.6.0" +version = "0.6.1" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-backends = { version = "=0.6.0", path = "../backends" } -necessist-core = { version = "=0.6.0", path = "../core", features = ["clap"] } +necessist-backends = { version = "=0.6.1", path = "../backends" } +necessist-core = { version = "=0.6.1", path = "../core", features = ["clap"] } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.5"