summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorMarcin Mielniczuk <marmistrz.dev@zoho.eu>2017-08-03 10:32:44 +0200
committerMarcin Mielniczuk <marmistrz.dev@zoho.eu>2017-08-03 10:32:44 +0200
commitebcedb3bf98271fb77752acaec7a5c4990db578c (patch)
treee71f59ba68e4a672b865356e9f5ab0e54d7ed69b /CHANGELOG.md
parent9ad235c1e23e2bdf287b8f03550e6d54c4124db7 (diff)
parent607ab97ac64f597e78ab321aedd3063f8e040074 (diff)
downloadnix-ebcedb3bf98271fb77752acaec7a5c4990db578c.zip
Merge remote-tracking branch 'upstream/master' into ptrace-noreg
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bf0704bd..f41ec930 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,10 +8,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Added specialized wrappers: `sys::ptrace::{traceme, syscall, cont, attach}`. Using the matching routines
with `sys::ptrace::ptrace` is now deprecated.
+- Added `nix::poll` module for all platforms
+ ([#672](https://github.com/nix-rust/nix/pull/672))
+- Added `nix::ppoll` function for FreeBSD and DragonFly
+ ([#672](https://github.com/nix-rust/nix/pull/672))
+- Added protocol families in `AddressFamily` enum.
+ ([#647](https://github.com/nix-rust/nix/pull/647))
### Changed
- Renamed existing `ptrace` wrappers to encourage namespacing ([#692](https://github.com/nix-rust/nix/pull/692))
- Marked `sys::ptrace::ptrace` as `unsafe`.
+- Changed function signature of `socket()` and `socketpair()`. The `protocol` argument
+ has changed type from `c_int` to `SockProtocol`.
+ It accepts a `None` value for default protocol that was specified with zero using `c_int`.
+ ([#647](https://github.com/nix-rust/nix/pull/647))
## [0.9.0] 2017-07-23