Skip to content

Commit 52478ba

Browse files
committed
Merge remote-tracking branch 'origin/master' into add-mremap
2 parents c28af50 + c8e8def commit 52478ba

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased] - ReleaseDate
77
### Added
8+
### Changed
9+
### Fixed
10+
### Removed
11+
12+
## [0.19.0] - 6 October 2020
13+
### Added
814
- Added Netlink protocol families to the `SockProtocol` enum
915
(#[1289](https://github.com/nix-rust/nix/pull/1289))
1016
- Added `clock_gettime`, `clock_settime`, `clock_getres`,
@@ -18,7 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1824
(#[1283](https://github.com/nix-rust/nix/pull/1283))
1925
### Changed
2026
- Expose `SeekData` and `SeekHole` on all Linux targets
21-
(#[1284](https://github.com/nix-rust/nix/pull/1284))
27+
(#[1284](https://github.com/nix-rust/nix/pull/1284))
2228
- Changed unistd::{execv,execve,execvp,execvpe,fexecve,execveat} to take both `&[&CStr]` and `&[CString]` as its list argument(s).
2329
(#[1278](https://github.com/nix-rust/nix/pull/1278))
2430
- Made `unistd::fork` an unsafe funtion, bringing it in line with [libstd's decision](https://github.com/rust-lang/rust/pull/58059).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "nix"
33
description = "Rust friendly bindings to *nix APIs"
44
edition = "2018"
5-
version = "0.18.0"
5+
version = "0.19.0"
66
authors = ["The nix-rust Project Developers"]
77
repository = "https://github.com/nix-rust/nix"
88
license = "MIT"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Rust bindings to *nix APIs
22

3-
[![Build Status](https://travis-ci.org/nix-rust/nix.svg?branch=master)](https://travis-ci.org/nix-rust/nix)
3+
[![Travis Build Status](https://travis-ci.org/nix-rust/nix.svg?branch=master)](https://travis-ci.org/nix-rust/nix)
4+
[![Cirrus Build Status](https://api.cirrus-ci.com/github/nix-rust/nix.svg)](https://cirrus-ci.com/github/nix-rust/nix)
45
[![crates.io](http://meritbadge.herokuapp.com/nix)](https://crates.io/crates/nix)
56

67
[Documentation (Releases)](https://docs.rs/nix/)
@@ -91,7 +92,7 @@ To use `nix`, add this to your `Cargo.toml`:
9192

9293
```toml
9394
[dependencies]
94-
nix = "0.18.0"
95+
nix = "0.19.0"
9596
```
9697

9798
## Contributing

0 commit comments

Comments
 (0)