diff --git a/sdk/bpf/scripts/install.sh b/sdk/bpf/scripts/install.sh index f442820d6c..1a42b647ca 100755 --- a/sdk/bpf/scripts/install.sh +++ b/sdk/bpf/scripts/install.sh @@ -102,7 +102,7 @@ if [[ ! -e criterion-$version.md || ! -e criterion ]]; then fi # Install Rust-BPF -version=v1.24 +version=v1.25 if [[ ! -e bpf-tools-$version.md || ! -e bpf-tools ]]; then ( set -e diff --git a/sdk/cargo-build-bpf/src/main.rs b/sdk/cargo-build-bpf/src/main.rs index 9341f2f6f7..e2f330f078 100644 --- a/sdk/cargo-build-bpf/src/main.rs +++ b/sdk/cargo-build-bpf/src/main.rs @@ -710,7 +710,7 @@ fn main() { // The following line is scanned by CI configuration script to // separate cargo caches according to the version of sbf-tools. - let bpf_tools_version = "v1.24"; + let bpf_tools_version = "v1.25"; let version = format!("{}\nbpf-tools {}", crate_version!(), bpf_tools_version); let matches = clap::Command::new(crate_name!()) .about(crate_description!())