From d15f9f4f4dbd40d1a2b062828d9264e6de1f660c Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Mon, 12 Dec 2022 16:02:44 +0100 Subject: [PATCH] v0.8.4 --- 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 ++-- pylancelot/pyproject.toml | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 862f1e25..f0eac293 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.8.3" +version = "0.8.4" description = "binary analysis tools for x32/x64 PE files" authors = ["William Ballenthin "] license = "Apache-2.0" @@ -25,5 +25,5 @@ ar = "0.9" hex = "0.4" serde_json = "1.0" -lancelot = { path = "../core", version = "0.8.3" } -lancelot-flirt = { path = "../flirt", version = "0.8.3" } +lancelot = { path = "../core", version = "0.8.4" } +lancelot-flirt = { path = "../flirt", version = "0.8.4" } diff --git a/core/Cargo.toml b/core/Cargo.toml index f06344d9..b220d20f 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.3" +version = "0.8.4" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -37,7 +37,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.3", optional = true} +lancelot-flirt = { path = "../flirt", version = "0.8.4", optional = true} [dev-dependencies] criterion = "0.4" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index 74caa73d..73207360 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.3" +version = "0.8.4" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" diff --git a/jslancelot/Cargo.toml b/jslancelot/Cargo.toml index d623a572..19b2d1a3 100644 --- a/jslancelot/Cargo.toml +++ b/jslancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jslancelot" -version = "0.8.3" +version = "0.8.4" 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.3" } +lancelot = { path = "../core", version = "0.8.4" } 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 1dd70386..a0fe37d9 100644 --- a/pyflirt/Cargo.toml +++ b/pyflirt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-flirt" -version = "0.8.3" +version = "0.8.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.8.3" } +lancelot-flirt = { path = "../flirt", version = "0.8.4" } pyo3 = { version = "0.17"} anyhow = "1" diff --git a/pyflirt/pyproject.toml b/pyflirt/pyproject.toml index 04c165c2..c2c9b242 100644 --- a/pyflirt/pyproject.toml +++ b/pyflirt/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-flirt" -version = "0.8.3" +version = "0.8.4" 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 c6cbeaf0..3e980658 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.8.3" +version = "0.8.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.8.3" } +lancelot = { path = "../core", version = "0.8.4" } pyo3 = { version = "0.17"} anyhow = "1" diff --git a/pylancelot/pyproject.toml b/pylancelot/pyproject.toml index f92f5e53..e9460978 100644 --- a/pylancelot/pyproject.toml +++ b/pylancelot/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-lancelot" -version = "0.8.3" +version = "0.8.4" description = "Intel x86(-64) code analysis library that reconstructs control flow" readme = "README.md" requires-python = ">=3.7"