From 191ffee3cd6f3627c585b14dfc871f1a0836112f Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Mon, 5 Feb 2024 18:59:00 +0000 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ Cargo.lock | 6 +++--- core/Cargo.toml | 2 +- frameworks/Cargo.toml | 4 ++-- necessist/Cargo.toml | 6 +++--- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bb26257..3b6752ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.4.4 + +- Update `strum_macros` to version 0.26 ([#975](https://github.com/trailofbits/necessist/pull/975)) +- Update `swc_core` to version 0.90 ([#976](https://github.com/trailofbits/necessist/pull/976) and [#992](https://github.com/trailofbits/necessist/pull/992)) +- Update `strum` to version 0.26 ([#978](https://github.com/trailofbits/necessist/pull/978)) +- Include a copy of Solang's pt.rs in the repository, rather than download it when building ([#986](https://github.com/trailofbits/necessist/pull/986)) + ## 0.4.3 - Update `swc_core` to version 0.88.1 ([#963](https://github.com/trailofbits/necessist/pull/963)) diff --git a/Cargo.lock b/Cargo.lock index 095ee0f2..a7325263 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -965,7 +965,7 @@ dependencies = [ [[package]] name = "necessist" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anyhow", "assert_cmd", @@ -997,7 +997,7 @@ dependencies = [ [[package]] name = "necessist-core" -version = "0.4.3" +version = "0.4.4" dependencies = [ "ansi_term", "anyhow", @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "necessist-frameworks" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/core/Cargo.toml b/core/Cargo.toml index bbbb5392..b5b59d92 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-core" -version = "0.4.3" +version = "0.4.4" edition = "2021" description = "necessist-core" diff --git a/frameworks/Cargo.toml b/frameworks/Cargo.toml index 48b5ef20..22e0a123 100644 --- a/frameworks/Cargo.toml +++ b/frameworks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist-frameworks" -version = "0.4.3" +version = "0.4.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.4.3", path = "../core" } +necessist-core = { version = "=0.4.4", path = "../core" } anyhow = "1.0" assert_cmd = "2.0" diff --git a/necessist/Cargo.toml b/necessist/Cargo.toml index 2d6a62cb..c22ba713 100644 --- a/necessist/Cargo.toml +++ b/necessist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "necessist" -version = "0.4.3" +version = "0.4.4" edition = "2021" description = "necessist" @@ -10,8 +10,8 @@ license = "AGPL-3.0" repository = "https://github.com/trailofbits/necessist" [dependencies] -necessist-core = { version = "=0.4.3", path = "../core", features = ["clap"] } -necessist-frameworks = { version = "=0.4.3", path = "../frameworks" } +necessist-core = { version = "=0.4.4", path = "../core", features = ["clap"] } +necessist-frameworks = { version = "=0.4.4", path = "../frameworks" } anyhow = { version = "1.0", features = ["backtrace"] } clap = "4.4"