diff --git a/Cargo.toml b/Cargo.toml index acdce48f6..ebfb45563 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ # Project metadata name = "rbpf" -version = "0.4.0" +version = "0.4.1" authors = ["Quentin Monnet "] # Additional metadata for packaging diff --git a/README.md b/README.md index 1c47763e9..47f722aeb 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ file: ```toml [dependencies] -rbpf = "0.4.0" +rbpf = "0.4.1" ``` 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.4.0" +rbpf = "0.4.1" elf = "0.8.0" ``` @@ -581,7 +581,7 @@ enabled-by-default features. ```toml [dependencies] -rbpf = { version = "0.4.0", default-features = false } +rbpf = { version = "0.4.1", default-features = false } ``` Note that when using this crate in `no_std` environments, the `jit` module diff --git a/tests/ubpf_jit_x86_64.rs b/tests/ubpf_jit_x86_64.rs index 42c7a4e6b..323187b95 100644 --- a/tests/ubpf_jit_x86_64.rs +++ b/tests/ubpf_jit_x86_64.rs @@ -895,7 +895,7 @@ fn test_jit_div_reg_with_nonzero_imm() { // exit 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, ]; - + let mut vm = rbpf::EbpfVmNoData::new(Some(prog)).unwrap(); #[cfg(not(feature = "std"))] let mut exec_mem = alloc_exec_memory(); @@ -923,7 +923,7 @@ fn test_jit_mod_reg_with_nonzero_imm() { // exit 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, ]; - + let mut vm = rbpf::EbpfVmNoData::new(Some(prog)).unwrap(); #[cfg(not(feature = "std"))] let mut exec_mem = alloc_exec_memory();