Skip to content

Commit

Permalink
Add CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Jun 13, 2021
1 parent c0eaa5e commit c4d76d0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -46,6 +46,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Errno aliases are now associated consts on `Errno`, instead of consts in the
`errno` module.
(#[1452](https://github.com/nix-rust/nix/pull/1452))
- Nix's error type is now a simple wrapper around the platform's Errno. This
means it is now `Into<std::io::Error>`. It's also `Clone`, `Copy`, `Eq`, and
has a small fixed size. It also requires less typing. For example, the old
enum variant `nix::Error::Sys(nix::errno::Errno::EINVAL)` is now simply
`nix::Error::EINVAL`.
([#1446](https://github.com/nix-rust/nix/pull/1446))

### Fixed
- Allow `sockaddr_ll` size, as reported by the Linux kernel, to be smaller then it's definition
Expand Down

0 comments on commit c4d76d0

Please sign in to comment.