Skip to content

Commit 6da1633

Browse files
Willi Ballenthinwilliballenthin
authored andcommitted
v0.9.0
1 parent c3b58dd commit 6da1633

File tree

9 files changed

+13
-15
lines changed

9 files changed

+13
-15
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,3 @@ jobs:
6767
pip install -U pip setuptools maturin pytest pefile
6868
maturin develop
6969
pytest
70-

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ intel x86(-64) code analysis library that reconstructs control flow
1010
- make
1111
- cmake
1212
- pkg-config
13-
- protoc (on Windows)
1413

1514
Consider using [cranelift](https://github.com/rust-lang/rustc_codegen_cranelift) during development:
1615

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.8.10"
3+
version = "0.9.0"
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.8.10" }
32-
lancelot-flirt = { path = "../flirt", version = "0.8.10" }
31+
lancelot = { path = "../core", version = "0.9.0" }
32+
lancelot-flirt = { path = "../flirt", version = "0.9.0" }
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.8.10"
5+
version = "0.9.0"
66
authors = ["Willi Ballenthin <[email protected]>"]
77
edition = "2021"
88
homepage = "https://github.com/williballenthin/lancelot"
@@ -36,7 +36,7 @@ fern = { version = "0.7", optional = true }
3636
bitvec = { version = "1" }
3737

3838
# needed for flirt
39-
lancelot-flirt = { path = "../flirt", version = "0.8.10", optional = true}
39+
lancelot-flirt = { path = "../flirt", version = "0.9.0", optional = true}
4040

4141
# needed for binexport2
4242
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.8.10"
5+
version = "0.9.0"
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.8.10"
3+
version = "0.9.0"
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.8.10" }
16+
lancelot-flirt = { path = "../flirt", version = "0.9.0" }
1717
pyo3 = { version = "0.22"}
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.8.10"
3+
version = "0.9.0"
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.8"

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.8.10"
3+
version = "0.9.0"
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.8.10" }
14+
lancelot = { path = "../core", version = "0.9.0" }
1515
pyo3 = { version = "0.22" }
1616
pyo3-log = "0.11"
1717
anyhow = "1"

pylancelot/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "python-lancelot"
3-
version = "0.8.10"
3+
version = "0.9.0"
44
description = "Intel x86(-64) code analysis library that reconstructs control flow"
55
readme = "README.md"
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.9"
77
license = {file = "LICENSE.txt"}
88
keywords = ["flirt"]
99
authors = [

0 commit comments

Comments
 (0)