From 70f6eb93be9f69434e677232fa95b98eedd80077 Mon Sep 17 00:00:00 2001 From: oblique Date: Sun, 18 Sep 2022 01:15:20 +0300 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 12 +++++++++++- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1ea792..bb403ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.3.0] + +### Changed + +- `NamedLock::create` now rejects names that contain `\0` character ([#5]) +- `NamedLock::create` now rejects empty names +- Upgrade all dependencies + ## [0.2.0] ### Added @@ -22,9 +30,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgrade all dependencies -[unreleased]: https://github.com/oblique/named-lock/compare/0.2.0...HEAD +[unreleased]: https://github.com/oblique/named-lock/compare/0.3.0...HEAD [0.2.0]: https://github.com/oblique/named-lock/compare/0.1.1...0.2.0 +[0.3.0]: https://github.com/oblique/named-lock/compare/0.2.0...0.3.0 +[#5]: https://github.com/oblique/named-lock/issues/5 [#4]: https://github.com/oblique/named-lock/issues/4 [#2]: https://github.com/oblique/named-lock/issues/2 [#1]: https://github.com/oblique/named-lock/issues/1 diff --git a/Cargo.toml b/Cargo.toml index f4721bb..3e75c37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "named-lock" -version = "0.2.1-alpha.0" +version = "0.3.0" authors = ["oblique "] edition = "2018" license = "MIT"