summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2022-07-10 18:09:51 -0600
committerAlan Somers <asomers@gmail.com>2022-07-10 18:43:00 -0600
commitb3e4d59bd7ad8a816b2ebe5f4564d8b62bbba4f5 (patch)
tree4ece7f3100f8e259d94d7052957f40abba92b22a /CHANGELOG.md
parentcaebe66185451e465e5e6454219c83ad86bfc553 (diff)
downloadnix-b3e4d59bd7ad8a816b2ebe5f4564d8b62bbba4f5.zip
Add const constructors for TimeSpec and TimeVal
These are basically the same as From<libc::timespec> and From<libc::timeval>, but they're const and require less typing.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b7c3df5f..80e2ce2f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,9 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## [Unreleased] - ReleaseDate
### Added
+- Added const constructors for `TimeSpec` and `TimeVal`
+ (#[1760](https://github.com/nix-rust/nix/pull/1760))
- Added `aio_writev` and `aio_readv`.
(#[1713](https://github.com/nix-rust/nix/pull/1713))
-
- impl `From<uid_t>` for `Uid` and `From<gid_t>` for `Gid`
(#[1727](https://github.com/nix-rust/nix/pull/1727))
- impl From<SockaddrIn> for std::net::SocketAddrV4 and