Skip to content

Commit bf089ea

Browse files
d-e-s-odanielocfb
authored andcommitted
Release 0.24.0
Prepare for release of 0.24.0 by bumping both libbpf-rs and libbpf-cargo versions accordingly. Signed-off-by: Daniel Müller <[email protected]>
1 parent 25fa915 commit bf089ea

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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.

libbpf-cargo/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Unreleased
2-
----------
1+
0.24.0
2+
------
33
- Reworked generated skeletons to contain publicly accessible maps and
44
program members, no longer requiring method calls
55
- Adjusted skeleton creation logic to generate Rust types for all types

libbpf-cargo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/libbpf/libbpf-rs"
55
homepage = "https://github.com/libbpf/libbpf-rs"
66
documentation = "https://docs.rs/crate/libbpf-cargo"
77
readme = "README.md"
8-
version = "0.23.3"
8+
version = "0.24.0"
99
authors = ["Daniel Xu <[email protected]>", "Daniel Müller <[email protected]>"]
1010
edition = "2021"
1111
rust-version = "1.71"
@@ -32,7 +32,7 @@ default = ["libbpf-rs/default"]
3232
[dependencies]
3333
anyhow = "1.0.1"
3434
cargo_metadata = "0.15.0"
35-
libbpf-rs = { version = "0.23", default-features = false, path = "../libbpf-rs" }
35+
libbpf-rs = { version = "0.24", default-features = false, path = "../libbpf-rs" }
3636
memmap2 = "0.5"
3737
regex = { version = "1.6.0", default-features = false, features = ["std", "unicode-perl"] }
3838
semver = "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.23"
15+
libbpf-cargo = "0.24"
1616
```
1717

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

libbpf-rs/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Unreleased
2-
----------
1+
0.24.0
2+
------
33
- Split `{Open,}{Map,Program}` into `{Open,}{Map,Program}` (for shared
44
access) and `{Open,}{Map,Program}Mut` (for exclusive access)
55
- Added `AsRawLibbpf` impl for `OpenObject` and `ObjectBuilder`

libbpf-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "libbpf-rs is a safe, idiomatic, and opinionated wrapper around li
44
repository = "https://github.com/libbpf/libbpf-rs"
55
homepage = "https://github.com/libbpf/libbpf-rs"
66
readme = "README.md"
7-
version = "0.23.3"
7+
version = "0.24.0"
88
authors = ["Daniel Xu <[email protected]>", "Daniel Müller <[email protected]>"]
99
edition = "2021"
1010
rust-version = "1.71"

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.23"
15+
libbpf-rs = "0.24"
1616
```
1717

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

0 commit comments

Comments
 (0)