Skip to content

Commit 2bf5944

Browse files
d-e-s-odanielocfb
authored andcommitted
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 <[email protected]>
1 parent dd9326b commit 2bf5944

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
cargo init --bin libbpf-rs-test-project
108108
cd libbpf-rs-test-project
109109
cat >> Cargo.toml <<EOF
110-
libbpf-rs = { version = "*", path = "../libbpf-rs", ${{ matrix.args }} }
110+
libbpf-rs = { path = "../libbpf-rs", ${{ matrix.args }} }
111111
EOF
112112
cat > src/main.rs <<EOF
113113
fn main() {

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
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

+2-2
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

+1-1
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

+1-1
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

+2-2
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

+1-1
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)