Skip to content

Commit

Permalink
Cargo.toml,README.md: Bump version to 0.3.0
Browse files Browse the repository at this point in the history
We got a bunch of new features since version 0.2.0, in particular:

- A new JIT-compiling infrastructure via Cranelift (opt-in feature)
- The ability to compile and use most of rbpf's features without the
  standard library
- An API update to allow eBPF helpers to use designated memory area in
  our simple verifier, so that users can hook their map implementation
- Several bug fixes

Let's update the crate so that users can benefit from these.

Signed-off-by: Quentin Monnet <qmo@qmon.net>
  • Loading branch information
qmonnet committed Sep 16, 2024
1 parent 28f3d28 commit e8d9a12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Project metadata
name = "rbpf"
version = "0.2.0"
version = "0.3.0"
authors = ["Quentin Monnet <qmo@qmon.net>"]

# Additional metadata for packaging
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ file:

```toml
[dependencies]
rbpf = "0.2.0"
rbpf = "0.3.0"
```

You can also use the development version from this GitHub repository. This
Expand Down Expand Up @@ -388,7 +388,7 @@ to your `Cargo.toml` file.

```toml
[dependencies]
rbpf = "0.2.0"
rbpf = "0.3.0"
elf = "0.0.10"
```

Expand Down Expand Up @@ -577,7 +577,7 @@ enabled-by-default features.

```toml
[dependencies]
rbpf = { version = "1.0", default-features = false }
rbpf = { version = "0.3.0", default-features = false }
```

Note that when using this crate in `no_std` environments, the `jit` module
Expand Down

0 comments on commit e8d9a12

Please sign in to comment.