summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: