Skip to content

Commit

Permalink
v0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Mar 10, 2024
1 parent f9bd48b commit 2eed707
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
env:
PYO3_CROSS_LIB_DIR: /opt/python/${{ matrix.python.abi }}/lib
with:
# bump this to v1.5.0 shortly
# downgraded here due to https://github.com/pypa/twine/issues/1059
# which prevents GH action from uploading to PyPI
maturin-version: 1.4.0
target: ${{ matrix.target }}
manylinux: auto
Expand Down
6 changes: 3 additions & 3 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lancelot-bin"
version = "0.8.9"
version = "0.8.10"
description = "binary analysis tools for x32/x64 PE files"
authors = ["William Ballenthin <william.ballenthin@fireeye.com>"]
license = "Apache-2.0"
Expand All @@ -27,5 +27,5 @@ ar = { git = "https://github.com/mdsteele/rust-ar", rev = "03d664b", version = "
hex = "0.4"
serde_json = "1.0"

lancelot = { path = "../core", version = "0.8.9" }
lancelot-flirt = { path = "../flirt", version = "0.8.9" }
lancelot = { path = "../core", version = "0.8.10" }
lancelot-flirt = { path = "../flirt", version = "0.8.10" }
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lancelot"
description = "binary analysis framework for x32/x64 PE files"
license = "Apache-2.0"
version = "0.8.9"
version = "0.8.10"
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
edition = "2021"
homepage = "https://github.com/williballenthin/lancelot"
Expand Down Expand Up @@ -36,7 +36,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.9", optional = true}
lancelot-flirt = { path = "../flirt", version = "0.8.10", optional = true}

[dev-dependencies]
criterion = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion flirt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lancelot-flirt"
description = "parse and match FLIRT signatures"
license = "Apache-2.0"
version = "0.8.9"
version = "0.8.10"
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
edition = "2021"
homepage = "https://github.com/williballenthin/lancelot"
Expand Down
4 changes: 2 additions & 2 deletions jslancelot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jslancelot"
version = "0.8.9"
version = "0.8.10"
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
edition = "2021"
homepage = "https://github.com/williballenthin/lancelot"
Expand All @@ -13,7 +13,7 @@ readme = "./README.md"
crate-type = ["cdylib"]

[dependencies]
lancelot = { path = "../core", version = "0.8.9" }
lancelot = { path = "../core", version = "0.8.10" }
anyhow = "1"
wasm-bindgen = { version = "0.2", features = ["enable-interning", "std"] }
js-sys = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions pyflirt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python-flirt"
version = "0.8.9"
version = "0.8.10"
authors = ["William Ballenthin <william.ballenthin@fireeye.com>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ name = "flirt"
crate-type = ["cdylib"]

[dependencies]
lancelot-flirt = { path = "../flirt", version = "0.8.9" }
lancelot-flirt = { path = "../flirt", version = "0.8.10" }
pyo3 = { version = "0.17"}
anyhow = "1"

Expand Down
4 changes: 2 additions & 2 deletions pyflirt/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "python-flirt"
version = "0.8.9"
version = "0.8.10"
description = "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures."
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["flirt"]
authors = [
Expand Down
4 changes: 2 additions & 2 deletions pylancelot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pylancelot"
version = "0.8.9"
version = "0.8.10"
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
edition = "2021"
homepage = "https://github.com/williballenthin/lancelot"
Expand All @@ -11,7 +11,7 @@ name = "lancelot"
crate-type = ["cdylib"]

[dependencies]
lancelot = { path = "../core", version = "0.8.9" }
lancelot = { path = "../core", version = "0.8.10" }
pyo3 = { version = "0.17"}
anyhow = "1"

Expand Down
4 changes: 2 additions & 2 deletions pylancelot/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "python-lancelot"
version = "0.8.7"
version = "0.8.10"
description = "Intel x86(-64) code analysis library that reconstructs control flow"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["flirt"]
authors = [
Expand Down

0 comments on commit 2eed707

Please sign in to comment.