Skip to content

Commit ab0e8b4

Browse files
committed
Release 0.25.0-beta.0
Prepare for release of 0.25.0-beta.0 by bumping both libbpf-rs and libbpf-cargo versions accordingly. Signed-off-by: Daniel Müller <deso@posteo.net>
1 parent 662887e commit ab0e8b4

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-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.24.8"
2+
version = "0.25.0-beta.0"
33
edition = "2021"
44
rust-version = "1.71"
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-
Unreleased
2-
----------
1+
0.25.0-beta.0
2+
-------------
33
- Represent C enums with custom types and const fields
44
- Adjusted Rust correspondents in generated skeletons to no longer be
55
wrapped in `MaybeUninit`

libbpf-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ default = ["libbpf-rs/default"]
3131
[dependencies]
3232
anyhow = "1.0.1"
3333
cargo_metadata = "0.15.0"
34-
libbpf-rs = { version = "0.24", default-features = false, path = "../libbpf-rs" }
34+
libbpf-rs = { version = "=0.25.0-beta.0", default-features = false, path = "../libbpf-rs" }
3535
memmap2 = "0.5"
3636
regex = { version = "1.6.0", default-features = false, features = ["std", "unicode-perl"] }
3737
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.24"
15+
libbpf-cargo = "=0.25.0-beta.0"
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.25.0-beta.0
2+
-------------
33
- Added `Map::lookup_batch` and `Map::lookup_and_delete_batch` method
44

55

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.24"
15+
libbpf-rs = "=0.25.0-beta.0"
1616
```
1717

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

0 commit comments

Comments
 (0)