diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 |
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)) @@ -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" @@ -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: |