summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorOssi Herrala <oherrala@iki.fi>2020-05-13 11:15:03 +0300
committerOssi Herrala <oherrala@iki.fi>2020-05-17 11:24:18 +0300
commit71aa2a6e9a51127d5bed8da38a69aa0894a5fa80 (patch)
tree8d8916b22cdfd41ae77c513b3628a648cb6b98a4 /CHANGELOG.md
parent2f78ec2bba5bbeac2c666745da1423b8c326f61a (diff)
downloadnix-71aa2a6e9a51127d5bed8da38a69aa0894a5fa80.zip
Replace void crate with Rust standard lib Infallible type
std::convert::Infallible has been available since Rust 1.34 and nix currently targets Rust 1.36 or later so this should not cause problems. Fixes #1238
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d5c6d4d6..ad8aeb2a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -36,6 +36,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
(#[1198](https://github.com/nix-rust/nix/pull/1198))
- On Linux, `ptrace::write` is now an `unsafe` function. Caveat programmer.
(#[1245](https://github.com/nix-rust/nix/pull/1245))
+- `execv`, `execve`, `execvp` and `execveat` in `::nix::unistd` and `reboot` in
+ `::nix::sys::reboot` now return `Result<Infallible>` instead of `Result<Void>` (#[1239](https://github.com/nix-rust/nix/pull/1239))
### Fixed