summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de46f8c7..a66b35e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -33,7 +33,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Added `sched_getaffinity`.
([#1148](https://github.com/nix-rust/nix/pull/1148))
+- Added optional `Signal` argument to `ptrace::{detach, syscall}` for signal
+ injection. ([#1083](https://github.com/nix-rust/nix/pull/1083))
+
### Changed
+- `sys::socket::recvmsg` now takes a plain `Vec` instead of a `CmsgBuffer`
+ implementor. If you were already using `cmsg_space!`, then you needn't worry.
+ ([#1156](https://github.com/nix-rust/nix/pull/1156))
+
- `sys::socket::recvfrom` now returns
`Result<(usize, Option<SockAddr>)>` instead of `Result<(usize, SockAddr)>`.
([#1145](https://github.com/nix-rust/nix/pull/1145))
@@ -78,6 +85,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
([#1136](https://github.com/nix-rust/nix/pull/1136))
### Removed
+- Remove the deprecated `CmsgSpace`.
+ ([#1156](https://github.com/nix-rust/nix/pull/1156))
## [0.15.0] - 10 August 2019
### Added