summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-11-28 20:21:05 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-11-28 20:21:05 +0000
commit6c9dc5b67ea4157d4fc80a811dde8a4f82f6004e (patch)
tree21aa259552b423cb8adfa47adc771bbcdabf3861
parent2a942840ba405613273b6d329e3bfaf487bf6a22 (diff)
parente14ad4ddd20304a6bdefc1c838b5d6038f03c4e0 (diff)
downloadnix-6c9dc5b67ea4157d4fc80a811dde8a4f82f6004e.zip
Merge #983
983: Bump version to 0.12.0 r=asomers a=asomers Co-authored-by: Alan Somers <asomers@gmail.com>
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b039038e..d974c7a1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+### Added
+### Changed
+### Fixed
+### Removed
+
+## [0.12.0] 2018-11-28
### Added
- Added `FromStr` and `Display` impls for `nix::sys::Signal`
diff --git a/Cargo.toml b/Cargo.toml
index 741d963d..d17e45d6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-version = "0.11.0"
+version = "0.12.0"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
diff --git a/README.md b/README.md
index 98366d79..0171f1b9 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ To use `nix`, first add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.11.0"
+nix = "0.12.0"
```
Then, add this to your crate root: