diff --git a/bin/Cargo.toml b/bin/Cargo.toml index cb7f5265..ecec3b55 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.3.2" +version = "0.3.3" 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.2" } +lancelot = { path = "../core", version = "0.3.3" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 19e0c1cd..a76dcbda 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.2" +version = "0.3.3" authors = ["Willi Ballenthin "] edition = "2018" @@ -24,7 +24,7 @@ regex = "1" smallvec = "1" widestring = "0.4" -lancelot-flirt = { path = "../flirt", version = "0.3.2" } +lancelot-flirt = { path = "../flirt", version = "0.3.3" } [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 362058d2..65709e7b 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.2" +version = "0.3.3" authors = ["Willi Ballenthin "] edition = "2018" diff --git a/pylancelot/Cargo.toml b/pylancelot/Cargo.toml index 19cd1c74..7b35f6ee 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.3.2" +version = "0.3.3" authors = ["Willi Ballenthin "] edition = "2018" @@ -9,7 +9,7 @@ name = "lancelot" crate-type = ["cdylib"] [dependencies] -lancelot = { path = "../core", version = "0.3.2" } +lancelot = { path = "../core", version = "0.3.3" } pyo3 = { version = "0.11"} anyhow = "1" zydis = "3"