From 3b2d3fc65216e20028ed12fea145bbb48cc19e3a Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Mon, 15 Nov 2021 13:18:49 -0700 Subject: [PATCH] v0.7.0 --- bin/Cargo.toml | 6 +++--- core/Cargo.toml | 4 ++-- flirt/Cargo.toml | 2 +- pyflirt/Cargo.toml | 4 ++-- pylancelot/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index e8a7ad8e..fa1f132e 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.6.5" +version = "0.7.0" description = "binary analysis tools for x32/x64 PE files" authors = ["William Ballenthin "] license = "Apache-2.0" @@ -24,5 +24,5 @@ goblin = "0.4" zydis = { git = "https://github.com/williballenthin/zydis-rs", branch = "fix-26" } hex = "0.4" -lancelot = { path = "../core", version = "0.6.5" } -lancelot-flirt = { path = "../flirt", version = "0.6.5" } +lancelot = { path = "../core", version = "0.7.0" } +lancelot-flirt = { path = "../flirt", version = "0.7.0" } diff --git a/core/Cargo.toml b/core/Cargo.toml index f5b8ce5d..872df446 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.6.5" +version = "0.7.0" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" @@ -31,7 +31,7 @@ fern = { version = "0.6", optional = true } chrono = { version = "0.4", features = ["clock"], default-features = false, optional = true} bitvec = { version = "0.22", optional = true } -lancelot-flirt = { path = "../flirt", version = "0.6.5", optional = true} +lancelot-flirt = { path = "../flirt", version = "0.7.0", optional = true} [dev-dependencies] criterion = "0.3" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index d0fc0fa5..c95b090c 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.6.5" +version = "0.7.0" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" diff --git a/pyflirt/Cargo.toml b/pyflirt/Cargo.toml index e8b7cc58..e4d73d5d 100644 --- a/pyflirt/Cargo.toml +++ b/pyflirt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-flirt" -version = "0.6.5" +version = "0.7.0" 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.6.5" } +lancelot-flirt = { path = "../flirt", version = "0.7.0" } pyo3 = { version = "0.15"} anyhow = "1" diff --git a/pylancelot/Cargo.toml b/pylancelot/Cargo.toml index 6287c97d..6707723d 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.6.5" +version = "0.7.0" 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.6.5" } +lancelot = { path = "../core", version = "0.7.0" } pyo3 = { version = "0.15"} anyhow = "1" zydis = { git = "https://github.com/williballenthin/zydis-rs", branch = "fix-26" }