Skip to content

Commit bcb2767

Browse files
committed
Release 0.26.0-beta.1
Prepare for release of 0.26.0-beta.1 by bumping both libbpf-rs and libbpf-cargo versions accordingly. Signed-off-by: Daniel Müller <[email protected]>
1 parent ebbaabe commit bcb2767

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.26.0-beta.0"
2+
version = "0.26.0-beta.1"
33
edition = "2021"
44
rust-version = "1.82"
55
license = "LGPL-2.1-only OR BSD-2-Clause"

libbpf-cargo/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
0.26-beta.0
2-
-----------
1+
0.26.0-beta.0
2+
-------------
33
- Moved BPF object content in generated skeletons into `.bpf.objs` section
44
allowing easy extraction from the final binary
55
- Bumped minimum Rust version to `1.82`

libbpf-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ default = ["libbpf-rs/default"]
3333
anyhow = "1.0.40"
3434
cargo_metadata = "0.19.1"
3535
clap = { version = "4.0.32", features = ["derive"] }
36-
libbpf-rs = { version = "=0.26.0-beta.0", default-features = false, path = "../libbpf-rs" }
36+
libbpf-rs = { version = "=0.26.0-beta.1", default-features = false, path = "../libbpf-rs" }
3737
memmap2 = "0.9"
3838
serde = { version = "1.0", features = ["derive"] }
3939
serde_json = "1.0"

libbpf-cargo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Helps you build and develop BPF programs with standard Rust tooling.
1212
To use in your project, add into your `Cargo.toml`:
1313
```toml
1414
[build-dependencies]
15-
libbpf-cargo = "=0.26.0-beta.0"
15+
libbpf-cargo = "=0.26.0-beta.1"
1616
```
1717

1818
See [full documentation here](https://docs.rs/libbpf-cargo).

libbpf-rs/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
0.26-beta.0
2-
-----------
1+
0.26.0-beta.1
2+
-------------
3+
- Allowlisted `libbpf-sys` `1.6.1`
4+
5+
6+
0.26.0-beta.0
7+
-------------
38
- Added `target_obj_id` and `target_btf_id` fields to `TracingLinkInfo`
49
to expose BTF information directly from kernel queries
510
- Removed previously deprecated `Program::get_id_by_fd` method

libbpf-rs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Idiomatic Rust wrapper around [libbpf](https://github.com/libbpf/libbpf).
1212
To use in your project, add into your `Cargo.toml`:
1313
```toml
1414
[dependencies]
15-
libbpf-rs = "=0.26.0-beta.0"
15+
libbpf-rs = "=0.26.0-beta.1"
1616
```
1717

1818
See [full documentation here](https://docs.rs/libbpf-rs).

0 commit comments

Comments
 (0)