From b38899b7856031d88d518713c7fd64026a298390 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Sat, 9 Mar 2024 22:19:23 +0100 Subject: [PATCH] v0.8.9 --- bin/Cargo.toml | 6 +++--- core/Cargo.toml | 4 ++-- flirt/Cargo.toml | 2 +- jslancelot/Cargo.toml | 4 ++-- pyflirt/Cargo.toml | 4 ++-- pyflirt/pyproject.toml | 2 +- pylancelot/Cargo.toml | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 8461e38..008ed77 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.8.8" +version = "0.8.9" description = "binary analysis tools for x32/x64 PE files" authors = ["William Ballenthin "] license = "Apache-2.0" @@ -27,5 +27,5 @@ ar = { git = "https://github.com/mdsteele/rust-ar", rev = "03d664b", version = " hex = "0.4" serde_json = "1.0" -lancelot = { path = "../core", version = "0.8.8" } -lancelot-flirt = { path = "../flirt", version = "0.8.8" } +lancelot = { path = "../core", version = "0.8.9" } +lancelot-flirt = { path = "../flirt", version = "0.8.9" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 982d821..5ffc04b 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.8.8" +version = "0.8.9" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -36,7 +36,7 @@ chrono = { version = "0.4", features = ["clock"], default-features = false, opti bitvec = { version = "1", optional = true } # needed for flirt -lancelot-flirt = { path = "../flirt", version = "0.8.8", optional = true} +lancelot-flirt = { path = "../flirt", version = "0.8.9", optional = true} [dev-dependencies] criterion = "0.4" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index ec33119..76f8344 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.8.8" +version = "0.8.9" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" diff --git a/jslancelot/Cargo.toml b/jslancelot/Cargo.toml index ddcaba6..3ea4f56 100644 --- a/jslancelot/Cargo.toml +++ b/jslancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jslancelot" -version = "0.8.8" +version = "0.8.9" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -13,7 +13,7 @@ readme = "./README.md" crate-type = ["cdylib"] [dependencies] -lancelot = { path = "../core", version = "0.8.8" } +lancelot = { path = "../core", version = "0.8.9" } anyhow = "1" wasm-bindgen = { version = "0.2", features = ["enable-interning", "std"] } js-sys = "0.3" diff --git a/pyflirt/Cargo.toml b/pyflirt/Cargo.toml index 8bd2578..316fb40 100644 --- a/pyflirt/Cargo.toml +++ b/pyflirt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-flirt" -version = "0.8.8" +version = "0.8.9" 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.8.8" } +lancelot-flirt = { path = "../flirt", version = "0.8.9" } pyo3 = { version = "0.17"} anyhow = "1" diff --git a/pyflirt/pyproject.toml b/pyflirt/pyproject.toml index 9123957..65e8e0b 100644 --- a/pyflirt/pyproject.toml +++ b/pyflirt/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-flirt" -version = "0.8.8" +version = "0.8.9" description = "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures." readme = "README.md" requires-python = ">=3.7" diff --git a/pylancelot/Cargo.toml b/pylancelot/Cargo.toml index fefcc66..f0f9470 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.8.8" +version = "0.8.9" 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.8.8" } +lancelot = { path = "../core", version = "0.8.9" } pyo3 = { version = "0.17"} anyhow = "1"