From d4e3336f17137f2d592412a3f04ede9934990aef Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Sat, 13 Jul 2024 15:35:00 +0100 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c99b9d5..299b28a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2024-07-13 + +### Fixed + +- When writing service definition files, the previous file is truncated. Without this, in certain + cases it would cause these files to be incorrectly re-written. + ## [0.7.0] - 2024-05-31 ### Added @@ -102,7 +109,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Created `TypedServiceManager` enum to associate the manager's type when retrieved using native lookup -[Unreleased]: https://github.com/chipsenkbeil/distant/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/chipsenkbeil/distant/compare/v0.7.1...HEAD +[0.7.1]: https://github.com/chipsenkbeil/service-manager-rs/releases/tag/v0.7.1 [0.7.0]: https://github.com/chipsenkbeil/service-manager-rs/releases/tag/v0.7.0 [0.6.2]: https://github.com/chipsenkbeil/service-manager-rs/releases/tag/v0.6.2 [0.6.1]: https://github.com/chipsenkbeil/service-manager-rs/releases/tag/v0.6.1 diff --git a/Cargo.toml b/Cargo.toml index 3b82fea..e462cff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "service-manager" description = "Provides adapters to communicate with various operating system service managers" categories = ["config"] keywords = ["generator"] -version = "0.7.0" +version = "0.7.1" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/service-manager-rs" diff --git a/README.md b/README.md index 7850772..675d230 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -service-manager = "0.6" +service-manager = "0.7" ``` ## Examples