From 59615ed31abdd7fea43bb6bad80c7a58632a8c7e Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Sun, 26 Jul 2020 15:20:52 -0600 Subject: [PATCH] Release version 0.18.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 785b0eb885..28c01a4117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate ### Added +### Changed +### Fixed +### Removed + +## [0.18.0] - 26 July 2020 +### Added - Added `fchown(2)` wrapper. (#[1257](https://github.com/nix-rust/nix/pull/1257)) - Added support on linux systems for `MAP_HUGE_`_`SIZE`_ family of flags. diff --git a/Cargo.toml b/Cargo.toml index cb32b41d2c..8456ad7c48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "nix" description = "Rust friendly bindings to *nix APIs" edition = "2018" -version = "0.17.0" +version = "0.18.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 3afe1e0d3e..85c7279cf1 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ To use `nix`, add this to your `Cargo.toml`: ```toml [dependencies] -nix = "0.17.0" +nix = "0.18.0" ``` ## Contributing