Skip to content

Commit 6222351

Browse files
v0.9.10
1 parent 83e6d4e commit 6222351

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

bin/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lancelot-bin"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
description = "binary analysis tools for x32/x64 PE files"
55
authors = ["William Ballenthin <[email protected]>"]
66
license = "Apache-2.0"
@@ -28,6 +28,6 @@ hex = "0.4"
2828
serde_json = "1.0"
2929
sha256 = "1"
3030

31-
lancelot = { path = "../core", version = "0.9.9" }
32-
lancelot-flirt = { path = "../flirt", version = "0.9.9" }
31+
lancelot = { path = "../core", version = "0.9.10" }
32+
lancelot-flirt = { path = "../flirt", version = "0.9.10" }
3333

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lancelot"
33
description = "binary analysis framework for x32/x64 PE files"
44
license = "Apache-2.0"
5-
version = "0.9.9"
5+
version = "0.9.10"
66
authors = ["Willi Ballenthin <[email protected]>"]
77
edition = "2021"
88
homepage = "https://github.com/williballenthin/lancelot"
@@ -37,7 +37,7 @@ fern = { version = "0.7", optional = true }
3737
bitvec = { version = "1" }
3838

3939
# needed for flirt
40-
lancelot-flirt = { path = "../flirt", version = "0.9.9", optional = true}
40+
lancelot-flirt = { path = "../flirt", version = "0.9.10", optional = true}
4141

4242
# needed for binexport2
4343
prost = "0.13"

flirt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lancelot-flirt"
33
description = "parse and match FLIRT signatures"
44
license = "Apache-2.0"
5-
version = "0.9.9"
5+
version = "0.9.10"
66
authors = ["Willi Ballenthin <[email protected]>"]
77
edition = "2021"
88
homepage = "https://github.com/williballenthin/lancelot"

pyflirt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-flirt"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
authors = ["William Ballenthin <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -13,7 +13,7 @@ name = "flirt"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
lancelot-flirt = { path = "../flirt", version = "0.9.9" }
16+
lancelot-flirt = { path = "../flirt", version = "0.9.10" }
1717
pyo3 = { version = "0.27", features = ["generate-import-lib"] }
1818
anyhow = "1"
1919

pyflirt/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python-flirt"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
description = "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures."
55
readme = "README.md"
66
requires-python = ">=3.10"

pylancelot/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pylancelot"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
authors = ["Willi Ballenthin <[email protected]>"]
55
edition = "2021"
66
homepage = "https://github.com/williballenthin/lancelot"
@@ -11,7 +11,7 @@ name = "lancelot"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
lancelot = { path = "../core", version = "0.9.9" }
14+
lancelot = { path = "../core", version = "0.9.10" }
1515
pyo3 = { version = "0.27", features = ["generate-import-lib"] }
1616
pyo3-log = "0.13"
1717
anyhow = "1"

pylancelot/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python-lancelot"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
description = "Intel x86(-64) code analysis library that reconstructs control flow"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)