From e14ad4ddd20304a6bdefc1c838b5d6038f03c4e0 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Wed, 28 Nov 2018 10:40:37 -0700 Subject: [PATCH] Bump version to 0.12.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b039038ede..d974c7a1d9 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 741d963d4b..d17e45d6fd 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 98366d799b..0171f1b9e3 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: