Skip to content

Commit

Permalink
Release 0.25.0-beta.0
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
d-e-s-o authored and danielocfb committed Nov 19, 2024
1 parent dd9326b commit 2bf5944
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
cargo init --bin libbpf-rs-test-project
cd libbpf-rs-test-project
cat >> Cargo.toml <<EOF
libbpf-rs = { version = "*", path = "../libbpf-rs", ${{ matrix.args }} }
libbpf-rs = { path = "../libbpf-rs", ${{ matrix.args }} }
EOF
cat > src/main.rs <<EOF
fn main() {
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.24.8"
version = "0.25.0-beta.0"
edition = "2021"
rust-version = "1.71"
license = "LGPL-2.1-only OR BSD-2-Clause"
Expand Down
4 changes: 2 additions & 2 deletions libbpf-cargo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.25.0-beta.0
-------------
- Represent C enums with custom types and const fields
- Adjusted Rust correspondents in generated skeletons to no longer be
wrapped in `MaybeUninit`
Expand Down
2 changes: 1 addition & 1 deletion libbpf-cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ default = ["libbpf-rs/default"]
[dependencies]
anyhow = "1.0.1"
cargo_metadata = "0.15.0"
libbpf-rs = { version = "0.24", default-features = false, path = "../libbpf-rs" }
libbpf-rs = { version = "=0.25.0-beta.0", default-features = false, path = "../libbpf-rs" }
memmap2 = "0.5"
regex = { version = "1.6.0", default-features = false, features = ["std", "unicode-perl"] }
semver = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion libbpf-cargo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Helps you build and develop BPF programs with standard Rust tooling.
To use in your project, add into your `Cargo.toml`:
```toml
[build-dependencies]
libbpf-cargo = "0.24"
libbpf-cargo = "=0.25.0-beta.0"
```

See [full documentation here](https://docs.rs/libbpf-cargo).
Expand Down
4 changes: 2 additions & 2 deletions libbpf-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.25.0-beta.0
-------------
- Added `Map::lookup_batch` and `Map::lookup_and_delete_batch` method


Expand Down
2 changes: 1 addition & 1 deletion libbpf-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Idiomatic Rust wrapper around [libbpf](https://github.com/libbpf/libbpf).
To use in your project, add into your `Cargo.toml`:
```toml
[dependencies]
libbpf-rs = "0.24"
libbpf-rs = "=0.25.0-beta.0"
```

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

0 comments on commit 2bf5944

Please sign in to comment.