summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-09-10 04:14:54 +0900
committerHomu <homu@barosl.com>2016-09-10 04:14:54 +0900
commitef14f7292da5fc2be98e1300544795eeaeedd9ef (patch)
treeac424291a958e297a31708895206074a77e05669
parent6ddc7b6c023416fa17e3f40f94c68a72b567a649 (diff)
parent60370990485092b4d7cbe625b964001e912dea9a (diff)
downloadnix-ef14f7292da5fc2be98e1300544795eeaeedd9ef.zip
Auto merge of #423 - fiveop:release_0.7.0, r=kamalmarhubi
Release v0.7.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cfb01c7e..0b4d7b03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
-## [Unreleased]
+## [0.7.0] 2016-09-09
### Added
- Added `lseek` and `lseek64` in `::nix::unistd`
diff --git a/Cargo.toml b/Cargo.toml
index 86027b2c..45c8470c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-version = "0.6.1-pre"
+version = "0.7.0"
authors = ["Carl Lerche <me@carllerche.com>"]
homepage = "https://github.com/nix-rust/nix"
repository = "https://github.com/nix-rust/nix"
@@ -23,7 +23,7 @@ preadv_pwritev = []
signalfd = []
[dependencies]
-libc = { git = "https://github.com/rust-lang/libc" }
+libc = "0.2.16"
bitflags = "0.4"
cfg-if = "0.1.0"
void = "1.0.2"
diff --git a/README.md b/README.md
index d9d1dbfb..20753af7 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ To use `nix`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.6.0"
+nix = "0.7.0"
```
Then, add this to your crate root: