diff options
author | Julio Merino <julio@meroh.net> | 2018-10-02 06:11:33 -0400 |
---|---|---|
committer | Julio Merino <jmmv@google.com> | 2018-10-02 10:50:05 -0400 |
commit | 06be3ee604ace2a49c9cc35edd55c058f18b7534 (patch) | |
tree | c908ae299cee0a61394945a996189bd1718232c6 /CHANGELOG.md | |
parent | a32b46ead6b22699e842226f0fac19de745a8219 (diff) | |
download | nix-06be3ee604ace2a49c9cc35edd55c058f18b7534.zip |
Add a wrapper for utimes(2)
PR #944 added wrappers for the more-modern futimens(2) and utimesat(2),
but unfortunately these APIs are not available on old-ish systems.
In particular, macOS Sierra and below don't implement them, making the
new APIs unusable. Whether we should care about such "old" systems is
debatable, but the problem is that, at the moment, this is the only
macOS version usable on Travis to test kexts and, thus, to test FUSE
file systems.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 326f5e31..4de6ade2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ([#916](https://github.com/nix-rust/nix/pull/916)) - Added `kmod` module that allows loading and unloading kernel modules on Linux. ([#930](https://github.com/nix-rust/nix/pull/930)) -- Added `futimens` and `utimesat` wrappers. - ([#944](https://github.com/nix-rust/nix/pull/944)) +- Added `futimens` and `utimesat` wrappers ([#944](https://github.com/nix-rust/nix/pull/944)) + and a `utimes` wrapper ([#946](https://github.com/nix-rust/nix/pull/946)). ### Changed - Increased required Rust version to 1.22.1/ |