Skip to content

Commit d4addd5

Browse files
bors[bot]asomers
andcommitted
Merge #1014
1014: Prepare for release 0.13.0 r=asomers a=asomers Co-authored-by: Alan Somers <[email protected]>
2 parents f74befc + a586900 commit d4addd5

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
@@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
7+
### Added
8+
### Changed
9+
### Fixed
10+
### Removed
11+
12+
## [0.13.0] - 2019-01-15
13+
### Added
714
- Added PKTINFO(V4) & V6PKTINFO cmsg support - Android/FreeBSD/iOS/Linux/MacOS.
815
([#990](https://github.com/nix-rust/nix/pull/990))
9-
### Added
1016
- Added support of CString type in `setsockopt`.
1117
([#972](https://github.com/nix-rust/nix/pull/972))
1218
- Added option `TCP_CONGESTION` in `setsockopt`.

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.12.0"
4+
version = "0.13.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/" }
19+
libc = "0.2.47"
2020
bitflags = "1.0"
2121
cfg-if = "0.1.0"
2222
void = "1.0.2"

README.md

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

8989
```toml
9090
[dependencies]
91-
nix = "0.12.0"
91+
nix = "0.13.0"
9292
```
9393

9494
Then, add this to your crate root:

0 commit comments

Comments
 (0)