diff --git a/CHANGELOG.md b/CHANGELOG.md index cfb01c7e2e..0b4d7b03b5 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 86027b2c64..45c8470c85 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 "] 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 d9d1dbfb99..20753af764 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: