summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorFelix Obenhuber <felix@obenhuber.de>2022-03-25 09:33:54 +0100
committerFelix Obenhuber <felix@obenhuber.de>2022-03-28 15:19:48 +0200
commit42f671b1e6cd4f9e27d57eed075ae385aae785f0 (patch)
treee5e8e4c476e6ee4e3ff55dd3b1d93b8d4cdca4cf /CHANGELOG.md
parentc59a8c8cc6cc6922888d6f33635905f9ea3d3205 (diff)
downloadnix-42f671b1e6cd4f9e27d57eed075ae385aae785f0.zip
Enable statfs magic constants for target_os = "android"
The statfs magic constants of file systems types are available on target_os android and the cfg guard is updated accordingly. Sync the list of constant with the constants declared in libc. Fixes #1689
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8377ca4..4c1f90eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Added fine-grained features flags. Most Nix functionality can now be
conditionally enabled. By default, all features are enabled.
(#[1611](https://github.com/nix-rust/nix/pull/1611))
+- Added statfs FS type magic constants for `target_os = "android"`
+ and synced constants with libc v0.2.121.
+ (#[1690](https://github.com/nix-rust/nix/pull/1690))
- Added `fexecve` on DragonFly.
(#[1577](https://github.com/nix-rust/nix/pull/1577))
- `sys::uio::IoVec` is now `Send` and `Sync`