diff --git a/CHANGELOG.md b/CHANGELOG.md index 930a9d3..b60091e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.9](https://github.com/edera-dev/libscap-bindings/compare/v0.0.8...v0.0.9) - 2026-07-24 + +### Other + +- download bpftool with ureq instead of reqwest +- stop emitting the clang AST during bindgen +- overlap the bpftool download with the libscap git fetch +- route launcher-bypassing compiles through sccache, parallelize libbpf +- fetch only the pinned libscap commit instead of a full clone + ## [0.0.8](https://github.com/edera-dev/libscap-bindings/compare/v0.0.7...v0.0.8) - 2026-06-05 ### Other diff --git a/Cargo.lock b/Cargo.lock index ae0ca17..0a43c87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,7 +294,7 @@ dependencies = [ [[package]] name = "libscap-bindings" -version = "0.0.8" +version = "0.0.9" dependencies = [ "anyhow", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index 36f2c27..af1104c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libscap-bindings" description = "Bindings for Falco's `libscap` eBPF monitoring backend C library" -version = "0.0.8" +version = "0.0.9" license = "Apache-2.0" homepage = "https://github.com/edera-dev/libscap-bindings" repository = "https://github.com/edera-dev/libscap-bindings"