summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryant Mairs <bryantmairs@google.com>2018-06-01 20:06:44 -0700
committerBryant Mairs <bryantmairs@google.com>2018-06-01 20:11:46 -0700
commit5664db8202db96857a90c88cede57be614b78f43 (patch)
tree5bda9fe8f43ec2a64044f6feac6cbd8aa2da8b0c
parentc51d1bb346a17482b23089909fbb8b56e837f4d7 (diff)
downloadnix-5664db8202db96857a90c88cede57be614b78f43.zip
Set the 0.11 release
-rw-r--r--CHANGELOG.md10
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
3 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 78761338..69484bbf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Added
+
+### Changed
+
+### Fixed
+
+### Removed
+
+## [0.11.0] 2018-06-01
+
+### Added
- Added `sendfile` on FreeBSD and Darwin.
([#901](https://github.com/nix-rust/nix/pull/901))
- Added `pselect`
diff --git a/Cargo.toml b/Cargo.toml
index 6f46d916..618be88a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-version = "0.11.0-pre"
+version = "0.11.0"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
@@ -12,7 +12,7 @@ exclude = [
]
[dependencies]
-libc = { git = "https://github.com/rust-lang/libc" }
+libc = "0.2.42"
bitflags = "1.0"
cfg-if = "0.1.0"
void = "1.0.2"
diff --git a/README.md b/README.md
index 558fb6c0..79c7fd2f 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ To use `nix`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.10.0"
+nix = "0.11.0"
```
Then, add this to your crate root: