From 2ed3fb7c0b4880f7b428550ba9ca8fcd3e6ab6de Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Sat, 15 Aug 2020 23:28:28 -0600 Subject: [PATCH] version 0.3.5 --- bin/Cargo.toml | 4 ++-- core/Cargo.toml | 4 ++-- flirt/Cargo.toml | 2 +- pylancelot/Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 132ac224..b2e5eef0 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.3.4" +version = "0.3.5" description = "binary analysis tools for x32/x64 PE files" authors = ["William Ballenthin "] license = "Apache-2.0" @@ -22,6 +22,6 @@ goblin = "0.2" zydis = "3" hex = "0.4" -lancelot = { path = "../core", version = "0.3.4" } +lancelot = { path = "../core", version = "0.3.5" } diff --git a/core/Cargo.toml b/core/Cargo.toml index b008b09b..d16230c9 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.3.4" +version = "0.3.5" authors = ["Willi Ballenthin "] edition = "2018" @@ -24,7 +24,7 @@ regex = "1" smallvec = "1" widestring = "0.4" -lancelot-flirt = { path = "../flirt", version = "0.3.4" } +lancelot-flirt = { path = "../flirt", version = "0.3.5" } [features] # The reason we do this is because doctests don't get cfg(test) diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index 0feaafa3..6800f972 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.3.4" +version = "0.3.5" authors = ["Willi Ballenthin "] edition = "2018" diff --git a/pylancelot/Cargo.toml b/pylancelot/Cargo.toml index 5484cea9..a7f2b357 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.3.4" +version = "0.3.5" authors = ["Willi Ballenthin "] edition = "2018" @@ -9,7 +9,7 @@ name = "lancelot" crate-type = ["cdylib"] [dependencies] -lancelot = { path = "../core", version = "0.3.4" } +lancelot = { path = "../core", version = "0.3.5" } pyo3 = { version = "0.11"} anyhow = "1" zydis = "3"