浏览代码

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>
Quentin Monnet 9 月之前
父节点
当前提交
e8d9a12b31
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 1 1
      Cargo.toml
  2. 3 3
      README.md

+ 1 - 1
Cargo.toml

@@ -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

+ 3 - 3
README.md

@@ -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
@@ -388,7 +388,7 @@ to your `Cargo.toml` file.
 
 ```toml
 [dependencies]
-rbpf = "0.2.0"
+rbpf = "0.3.0"
 elf = "0.0.10"
 ```
 
@@ -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