summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-10-12 00:13:48 +0000
committerGitHub <noreply@github.com>2020-10-12 00:13:48 +0000
commit074b5ae5f3dd2dfbf9b78d95dd35ec92d26eaaf8 (patch)
tree2331ae3fd1e229fc4eecfd6919787f84f76ca938
parent89b029b18ccea69a83cc768a12a6c4f517ac7f21 (diff)
parentb67883b81affb17d9668c27a09a27fffa588e5b0 (diff)
downloadnix-074b5ae5f3dd2dfbf9b78d95dd35ec92d26eaaf8.zip
Merge #1307
1307: Release v0.19.0. r=kamalmarhubi a=qwandor-google I'd like to get a new version of the crate released including #1301 so that I can get the vsock crate building on Android, and get both imported into the Android tree. Co-authored-by: Andrew Walbran <qwandor@google.com>
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5bdc4fbe..e018ab20 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] - ReleaseDate
### Added
+### Changed
+### Fixed
+### Removed
+
+## [0.19.0] - 6 October 2020
+### Added
- Added Netlink protocol families to the `SockProtocol` enum
(#[1289](https://github.com/nix-rust/nix/pull/1289))
- Added `clock_gettime`, `clock_settime`, `clock_getres`,
@@ -18,7 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
(#[1283](https://github.com/nix-rust/nix/pull/1283))
### Changed
- Expose `SeekData` and `SeekHole` on all Linux targets
-(#[1284](https://github.com/nix-rust/nix/pull/1284))
+ (#[1284](https://github.com/nix-rust/nix/pull/1284))
- Changed unistd::{execv,execve,execvp,execvpe,fexecve,execveat} to take both `&[&CStr]` and `&[CString]` as its list argument(s).
(#[1278](https://github.com/nix-rust/nix/pull/1278))
- Made `unistd::fork` an unsafe funtion, bringing it in line with [libstd's decision](https://github.com/rust-lang/rust/pull/58059).
diff --git a/Cargo.toml b/Cargo.toml
index c747635d..31c3d71c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "nix"
description = "Rust friendly bindings to *nix APIs"
edition = "2018"
-version = "0.18.0"
+version = "0.19.0"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
diff --git a/README.md b/README.md
index 85c7279c..bd015d1d 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ To use `nix`, add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.18.0"
+nix = "0.19.0"
```
## Contributing