diff --git a/CHANGELOG.md b/CHANGELOG.md index f971140989..21cb4b85a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate ### Added +### Changed +### Fixed +### Removed + +## [0.22.0] - 9 July 2021 +### Added - Added `if_nameindex` (#[1445](https://github.com/nix-rust/nix/pull/1445)) - Added `nmount` for FreeBSD. (#[1453](https://github.com/nix-rust/nix/pull/1453)) diff --git a/Cargo.toml b/Cargo.toml index 84859c2cf8..c5cdd0828a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "nix" description = "Rust friendly bindings to *nix APIs" edition = "2018" -version = "0.21.0" +version = "0.22.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 816f233ec9..895ef1ee87 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ To use `nix`, add this to your `Cargo.toml`: ```toml [dependencies] -nix = "0.21.0" +nix = "0.22.0" ``` ## Contributing