diff --git a/bin/Cargo.toml b/bin/Cargo.toml index ded43948..862f1e25 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lancelot-bin" -version = "0.8.1" +version = "0.8.3" 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.1" } -lancelot-flirt = { path = "../flirt", version = "0.8.1" } +lancelot = { path = "../core", version = "0.8.3" } +lancelot-flirt = { path = "../flirt", version = "0.8.3" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 54f630bb..f06344d9 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.1" +version = "0.8.3" 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.1", optional = true} +lancelot-flirt = { path = "../flirt", version = "0.8.3", optional = true} [dev-dependencies] criterion = "0.4" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index a4971544..74caa73d 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.1" +version = "0.8.3" authors = ["Willi Ballenthin "] edition = "2021" homepage = "https://github.com/williballenthin/lancelot" diff --git a/jslancelot/Cargo.toml b/jslancelot/Cargo.toml index f785ebb9..d623a572 100644 --- a/jslancelot/Cargo.toml +++ b/jslancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jslancelot" -version = "0.8.1" +version = "0.8.3" 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.1" } +lancelot = { path = "../core", version = "0.8.3" } 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 31efacee..1dd70386 100644 --- a/pyflirt/Cargo.toml +++ b/pyflirt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python-flirt" -version = "0.8.1" +version = "0.8.3" 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.1" } +lancelot-flirt = { path = "../flirt", version = "0.8.3" } pyo3 = { version = "0.17"} anyhow = "1" diff --git a/pyflirt/pyproject.toml b/pyflirt/pyproject.toml index ef5bc118..04c165c2 100644 --- a/pyflirt/pyproject.toml +++ b/pyflirt/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-flirt" -version = "0.8.1" +version = "0.8.3" 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 2ef50d5c..c6cbeaf0 100644 --- a/pylancelot/Cargo.toml +++ b/pylancelot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pylancelot" -version = "0.8.1" +version = "0.8.3" 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.1" } +lancelot = { path = "../core", version = "0.8.3" } pyo3 = { version = "0.17"} anyhow = "1" diff --git a/pylancelot/pyproject.toml b/pylancelot/pyproject.toml index fc08ea47..f92f5e53 100644 --- a/pylancelot/pyproject.toml +++ b/pylancelot/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-lancelot" -version = "0.8.1" +version = "0.8.3" description = "Intel x86(-64) code analysis library that reconstructs control flow" readme = "README.md" requires-python = ">=3.7"