File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed
Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1+ ### 0.2.0 (2020-04-10)
2+
3+ - Removed the compile-time Linux version check, and replaced it with a Cargo feature.
4+
5+ The Linux version check was overly restrictive, even on systems that did have the right kernel
6+ version installed but had older headers in ` /usr/include/linux ` . Beyond that, this check made it
7+ more difficult to compile on a different host than what's targeted.
8+
9+ There is now a ` linux4_14 ` feature flag on ` userfaultfd-sys ` , which turns on and tests the extra
10+ constants available in that version. Since ` userfaultfd ` did not make use of any of those newer
11+ features, it doesn't have a feature flag yet.
12+
13+ Applications should take care when initializing with ` UffdBuilder ` to specify the features and
14+ ioctls they require, so that an unsupported version will be detected at runtime.
15+
16+
117### 0.1.0 (2020-04-07)
218
319- Initial public release of userfaultfd-rs.
Original file line number Diff line number Diff line change 11[package ]
22name = " userfaultfd"
3- version = " 0.1.1-dev "
3+ version = " 0.2.0 "
44authors = [" Adam C. Foltzer <acfoltzer@fastly.com>" ]
55edition = " 2018"
66license = " MIT OR Apache-2.0"
@@ -13,4 +13,4 @@ bitflags = "1.0"
1313libc = " 0.2.65"
1414nix = " 0.17"
1515thiserror = " 1.0.4"
16- userfaultfd-sys = { path = " userfaultfd-sys" , version = " 0.1.1-dev " }
16+ userfaultfd-sys = { path = " userfaultfd-sys" , version = " 0.2.0 " }
Original file line number Diff line number Diff line change 11[package ]
22name = " linux-version"
3- version = " 0.1.1-dev "
3+ version = " 0.1.1"
44authors = [" Adam C. Foltzer <acfoltzer@fastly.com>" ]
55edition = " 2018"
66license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " userfaultfd-sys"
3- version = " 0.1.1-dev "
3+ version = " 0.2.0 "
44authors = [" Adam C. Foltzer <acfoltzer@fastly.com>" ]
55edition = " 2018"
66license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments