summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-08-10 21:23:47 +0000
committerbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-08-10 21:23:47 +0000
commit414cc86c0af09fd44454b93b6dc738316b16c43c (patch)
tree4a1896c9bd0bf33136d5fb52a7385c2255327cdb
parent38de0424d77c870db85a698b01a01763f343ecac (diff)
parentd602ac260fcf6820d0b8a939dde1154cbc3b321b (diff)
downloadnix-414cc86c0af09fd44454b93b6dc738316b16c43c.zip
Merge #1104
1104: Release v0.15.0 r=asomers a=asomers It's important to release fairly soon, because rustc 1.38.0 will deprecate std::mem::uninitialized. Co-authored-by: Alan Somers <asomers@gmail.com>
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
3 files changed, 10 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 972b9987..d93a5ce6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
-## [Unreleased]
+## [Unreleased] - ReleaseDate
+### Added
+### Changed
+### Fixed
+### Removed
+
+## [0.15.0] - 10 August 2019
### Added
- Added `MSG_WAITALL` to `MsgFlags` in `sys::socket`.
([#1079](https://github.com/nix-rust/nix/pull/1079))
diff --git a/Cargo.toml b/Cargo.toml
index b1af4605..ec0ded87 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-version = "0.14.1"
+version = "0.15.0"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
@@ -16,7 +16,7 @@ exclude = [
]
[dependencies]
-libc = { git = "https://github.com/rust-lang/libc", features = [ "extra_traits" ] }
+libc = { version = "0.2.60", features = [ "extra_traits" ] }
bitflags = "1.0"
cfg-if = "0.1.2"
void = "1.0.2"
diff --git a/README.md b/README.md
index 8d8fd729..0e540ba5 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ To use `nix`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.14.1"
+nix = "0.15.0"
```
Then, add this to your crate root: