From e733924afe44f005a0e5a9ace4424822c4a26599 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Mon, 17 Feb 2025 13:52:32 +0000 Subject: [PATCH] v0.9.4 --- bin/Cargo.toml | 6 +++--- core/Cargo.toml | 4 ++-- flirt/Cargo.toml | 2 +- pyflirt/Cargo.toml | 4 ++-- pyflirt/pyproject.toml | 2 +- pylancelot/Cargo.toml | 4 ++-- pylancelot/pyproject.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 1aa970f..044efcc 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.9.3" +version = "0.9.4" description = "binary analysis tools for x32/x64 PE files" authors = ["William Ballenthin "] license = "Apache-2.0" @@ -28,6 +28,6 @@ hex = "0.4" serde_json = "1.0" sha256 = "1" -lancelot = { path = "../core", version = "0.9.3" } -lancelot-flirt = { path = "../flirt", version = "0.9.3" } +lancelot = { path = "../core", version = "0.9.4" } +lancelot-flirt = { path = "../flirt", version = "0.9.4" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 89817fb..091fbff 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ name = "lancelot" description = "binary analysis framework for x32/x64 PE files" license = "Apache-2.0" -version = "0.9.3" +version = "0.9.4" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -36,7 +36,7 @@ fern = { version = "0.7", optional = true } bitvec = { version = "1" } # needed for flirt -lancelot-flirt = { path = "../flirt", version = "0.9.3", optional = true} +lancelot-flirt = { path = "../flirt", version = "0.9.4", optional = true} # needed for binexport2 prost = "0.13" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index adb3df3..7aa82dc 100644 --- a/flirt/Cargo.toml +++ b/flirt/Cargo.toml @@ -2,7 +2,7 @@ name = "lancelot-flirt" description = "parse and match FLIRT signatures" license = "Apache-2.0" -version = "0.9.3" +version = "0.9.4" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" diff --git a/pyflirt/Cargo.toml b/pyflirt/Cargo.toml index ccd8493..a19261d 100644 --- a/pyflirt/Cargo.toml +++ b/pyflirt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-flirt" -version = "0.9.3" +version = "0.9.4" authors = ["William Ballenthin "] edition = "2021" license = "Apache-2.0" @@ -13,7 +13,7 @@ name = "flirt" crate-type = ["cdylib"] [dependencies] -lancelot-flirt = { path = "../flirt", version = "0.9.3" } +lancelot-flirt = { path = "../flirt", version = "0.9.4" } pyo3 = { version = "0.22"} anyhow = "1" diff --git a/pyflirt/pyproject.toml b/pyflirt/pyproject.toml index 319f572..f6a0b5d 100644 --- a/pyflirt/pyproject.toml +++ b/pyflirt/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-flirt" -version = "0.9.3" +version = "0.9.4" description = "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures." readme = "README.md" requires-python = ">=3.9" diff --git a/pylancelot/Cargo.toml b/pylancelot/Cargo.toml index 304461b..b64324f 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.9.3" +version = "0.9.4" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -11,7 +11,7 @@ name = "lancelot" crate-type = ["cdylib"] [dependencies] -lancelot = { path = "../core", version = "0.9.3" } +lancelot = { path = "../core", version = "0.9.4" } pyo3 = { version = "0.22" } pyo3-log = "0.11" anyhow = "1" diff --git a/pylancelot/pyproject.toml b/pylancelot/pyproject.toml index 5e85fe1..14a6efb 100644 --- a/pylancelot/pyproject.toml +++ b/pylancelot/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-lancelot" -version = "0.9.3" +version = "0.9.4" description = "Intel x86(-64) code analysis library that reconstructs control flow" readme = "README.md" requires-python = ">=3.9"