summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2021-02-20 14:16:59 -0700
committerAlan Somers <asomers@gmail.com>2021-02-20 14:16:59 -0700
commiteca1f5ab13e0c2c1bfe1fc883e4bd29a47ccb040 (patch)
tree86792f8b3efdf273f81b69a333374d85919bca58
parent347d16b7489da9b731dfd94e93becb4b186e25c9 (diff)
downloadnix-eca1f5ab13e0c2c1bfe1fc883e4bd29a47ccb040.zip
Prepare for release 0.20.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c398fcbf..1297ba78 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
-## [Unreleased] - ReleaseDate
+## [0.20.0] - 20 February 2021
### Added
- Added a `passwd` field to `Group` (#[1338](https://github.com/nix-rust/nix/pull/1338))
diff --git a/Cargo.toml b/Cargo.toml
index 46f8cad0..885fa100 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "nix"
description = "Rust friendly bindings to *nix APIs"
edition = "2018"
-version = "0.19.0"
+version = "0.20.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 67e76726..167d1929 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ To use `nix`, add this to your `Cargo.toml`:
```toml
[dependencies]
-nix = "0.19.0"
+nix = "0.20.0"
```
## Contributing