Skip to content

Commit 0dcb95e

Browse files
committed
chore: prepare release 0.9.0 / 0.6.0
0.9.0 for the main crate, 0.6.0 for -sys. Signed-off-by: Patrick Roy <[email protected]>
1 parent 103cc30 commit 0dcb95e

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.9.0
2+
3+
- Add support for `UFFDIO_CONTINUE` and `UFFDIO_REGISTER_MODE_MINOR` under the new `linux5_13` feature.
4+
15
### 0.8.0 (2024-01-12)
26

37
- `IoctlFlags` accepts unknown flags (e.g. due to future kernel changes).

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "userfaultfd"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
authors = ["The Wasmtime Project Developers"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ cfg-if = "^1.0.0"
1414
libc = "0.2.65"
1515
nix = { version = "0.27", features = ["ioctl"] }
1616
thiserror = "1.0.4"
17-
userfaultfd-sys = { path = "userfaultfd-sys", version = "^0.5.0" }
17+
userfaultfd-sys = { path = "userfaultfd-sys", version = "^0.6.0" }
1818

1919
[dev-dependencies]
2020
nix = { version = "0.27", features = ["poll", "mman", "feature"] }
@@ -23,4 +23,4 @@ nix = { version = "0.27", features = ["poll", "mman", "feature"] }
2323
default = []
2424
linux4_14 = ["userfaultfd-sys/linux4_14", "nix/process"]
2525
linux5_7 = ["userfaultfd-sys/linux5_7"]
26-
linux5_13 = ["userfaultfd-sys/linux5_13"]
26+
linux5_13 = ["userfaultfd-sys/linux5_13"]

userfaultfd-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "userfaultfd-sys"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["The Wasmtime Project Developers"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)