summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-07-27 00:30:43 +0000
committerGitHub <noreply@github.com>2020-07-27 00:30:43 +0000
commit96054b6933404b4c1d5dbd49db7ec7c7a26e44de (patch)
tree724d5056eb0682fa372a915a0b4a7a3df65fc501
parent2a668fa6d923b080357bf3cf0dd698cab4cbcbeb (diff)
parent59615ed31abdd7fea43bb6bad80c7a58632a8c7e (diff)
downloadnix-96054b6933404b4c1d5dbd49db7ec7c7a26e44de.zip
Merge #1277
1277: Release version 0.18.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 785b0eb8..28c01a41 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 cb32b41d..8456ad7c 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 3afe1e0d..85c7279c 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