Skip to content

Commit e8d9a12

Browse files
committed
Cargo.toml,README.md: Bump version to 0.3.0
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>
1 parent 28f3d28 commit e8d9a12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Project metadata
44
name = "rbpf"
5-
version = "0.2.0"
5+
version = "0.3.0"
66
authors = ["Quentin Monnet <qmo@qmon.net>"]
77

88
# Additional metadata for packaging

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ file:
5252

5353
```toml
5454
[dependencies]
55-
rbpf = "0.2.0"
55+
rbpf = "0.3.0"
5656
```
5757

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

389389
```toml
390390
[dependencies]
391-
rbpf = "0.2.0"
391+
rbpf = "0.3.0"
392392
elf = "0.0.10"
393393
```
394394

@@ -577,7 +577,7 @@ enabled-by-default features.
577577

578578
```toml
579579
[dependencies]
580-
rbpf = { version = "1.0", default-features = false }
580+
rbpf = { version = "0.3.0", default-features = false }
581581
```
582582

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

0 commit comments

Comments
 (0)