@@ -5,15 +5,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
6
## [ Unreleased]
7
7
8
- <!-- ### Added-->
8
+ ### Added
9
9
- Added ` nix::unistd::{openat, fstatat, readlink, readlinkat} `
10
- ([ #497 ] ( https://github.com/nix-rust/nix/pull/551 ) )
10
+ ([ #551 ] ( https://github.com/nix-rust/nix/pull/551 ) )
11
11
12
12
### Changed
13
13
- Marked ` sys::mman::{ mmap, munmap, madvise, munlock, msync } ` as unsafe.
14
14
([ #559 ] ( https://github.com/nix-rust/nix/pull/559 ) )
15
-
16
- <!-- ### Fixed-->
15
+ - Minimum supported Rust version is now 1.13
16
+ - Removed ` revents ` argument from ` PollFd::new() ` as it's an output argument and
17
+ will be overwritten regardless of value.
18
+ ([ #542 ] ( https://github.com/nix-rust/nix/pull/542 )
19
+
20
+ ### Fixed
21
+ - Fixed multiple issues compiling under different archetectures and OSes.
22
+ Now compiles on Linux/MIPS ([ #538 ] ( https://github.com/nix-rust/nix/pull/538 ) ),
23
+ ` Linux/PPC ` ([ #553 ] ( https://github.com/nix-rust/nix/pull/553 ) ),
24
+ ` MacOS/x86_64,i686 ` ([ #553 ] ( https://github.com/nix-rust/nix/pull/553 ) ,
25
+ and ` NetBSD/x64_64 ` ([ #538 ] ( https://github.com/nix-rust/nix/pull/538 ) .
17
26
18
27
## [ 0.8.0] 2017-03-02
19
28
@@ -60,8 +69,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
60
69
([ #540 ] ( https://github.com/nix-rust/nix/pull/540 )
61
70
62
71
### Changed
63
- - ` ::nix::sys::termios::{cfgetispeed, cfsetispeed, cfgetospeed, cfsetospeed} `
64
- switched to use ` BaudRate ` enum from ` speed_t ` .
72
+ - ` ::nix::sys::termios::{cfgetispeed, cfsetispeed, cfgetospeed, cfsetospeed} `
73
+ switched to use ` BaudRate ` enum from ` speed_t ` .
65
74
([ #518 ] ( https://github.com/nix-rust/nix/pull/518 ) )
66
75
- ` epoll_ctl ` now could accept None as argument ` event `
67
76
when op is ` EpollOp::EpollCtlDel ` .
@@ -107,16 +116,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
107
116
- Exposed all fcntl(2) operations at the module level, so they can be
108
117
imported direclty instead of via ` FcntlArg ` enum.
109
118
([ #541 ] ( https://github.com/nix-rust/nix/pull/541 ) )
110
- - Removed ` revents ` argument from ` PollFd::new() ` as it's an output argument and
111
- will be overwritten regardless of value.
112
- ([ #542 ] ( https://github.com/nix-rust/nix/pull/542 )
113
119
114
120
### Fixed
115
- - Fixed multiple issues compiling under different archetectures and OSes.
116
- Now compiles on Linux/MIPS ([ #538 ] ( https://github.com/nix-rust/nix/pull/538 ) ),
117
- ` Linux/PPC ` ([ #553 ] ( https://github.com/nix-rust/nix/pull/553 ) ),
118
- ` MacOS/x86_64,i686 ` ([ #553 ] ( https://github.com/nix-rust/nix/pull/553 ) ,
119
- and ` NetBSD/x64_64 ` ([ #538 ] ( https://github.com/nix-rust/nix/pull/538 ) .
120
121
- Fixed multiple issues with Unix domain sockets on non-Linux OSes
121
122
([ #474 ] ( https://github.com/nix-rust/nix/pull/415 ) )
122
123
- Fixed using kqueue with ` EVFILT_USER ` on FreeBSD
0 commit comments