Skip to content

Commit d602ac2

Browse files
committed
Release v0.15.0
1 parent 38de042 commit d602ac2

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [Unreleased]
6+
## [Unreleased] - ReleaseDate
7+
### Added
8+
### Changed
9+
### Fixed
10+
### Removed
11+
12+
## [0.15.0] - 10 August 2019
713
### Added
814
- Added `MSG_WAITALL` to `MsgFlags` in `sys::socket`.
915
([#1079](https://github.com/nix-rust/nix/pull/1079))

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "nix"
33
description = "Rust friendly bindings to *nix APIs"
4-
version = "0.14.1"
4+
version = "0.15.0"
55
authors = ["The nix-rust Project Developers"]
66
repository = "https://github.com/nix-rust/nix"
77
license = "MIT"
@@ -16,7 +16,7 @@ exclude = [
1616
]
1717

1818
[dependencies]
19-
libc = { git = "https://github.com/rust-lang/libc", features = [ "extra_traits" ] }
19+
libc = { version = "0.2.60", features = [ "extra_traits" ] }
2020
bitflags = "1.0"
2121
cfg-if = "0.1.2"
2222
void = "1.0.2"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ To use `nix`, first add this to your `Cargo.toml`:
8989

9090
```toml
9191
[dependencies]
92-
nix = "0.14.1"
92+
nix = "0.15.0"
9393
```
9494

9595
Then, add this to your crate root:

0 commit comments

Comments
 (0)