diff --git a/sdk/bpf/scripts/install.sh b/sdk/bpf/scripts/install.sh index 101e69306..61e49857b 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.26 +version=v1.27 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 6d47b0d41..73401bb74 100644 --- a/sdk/cargo-build-bpf/src/main.rs +++ b/sdk/cargo-build-bpf/src/main.rs @@ -716,7 +716,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.26"; + let bpf_tools_version = "v1.27"; let version = format!("{}\nbpf-tools {}", crate_version!(), bpf_tools_version); let matches = clap::Command::new(crate_name!()) .about(crate_description!())