From ed3d9d560de3be118d8167eadad1d2b383611169 Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Wed, 11 Aug 2021 15:29:49 +0300 Subject: [PATCH] Release the 3.0.7 version --- CHANGELOG.md | 9 ++++++++- cli/Cargo.toml | 2 +- os_info/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9e4825c..dc0df3be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [3.0.7] (2021-08-12) + +- CentOS Stream detection has been fixed. (#267) + +- `env_logger` version has been updated to `0.9.0`. (#269) + ## [3.0.6] (2021-05-17) - Compilation for the DragonFly BSD operating system has been fixed. (#264) @@ -219,7 +225,8 @@ All notable changes to this project will be documented in this file. The first release containing only minor infrastructural changes and based on [os_type](https://github.com/schultyy/os_type). -[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.0.6...HEAD +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.0.7...HEAD +[3.0.7]: https://github.com/stanislav-tkach/os_info/compare/v3.0.6...v3.0.7 [3.0.6]: https://github.com/stanislav-tkach/os_info/compare/v3.0.5...v3.0.6 [3.0.5]: https://github.com/stanislav-tkach/os_info/compare/v3.0.4...v3.0.5 [3.0.4]: https://github.com/stanislav-tkach/os_info/compare/v3.0.3...v3.0.4 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 12ca5f1e..10641ddb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -17,7 +17,7 @@ name = "os_info" path = "src/main.rs" [dependencies] -os_info = { version = "3.0.6", default-features = false, path = "../os_info" } +os_info = { version = "3.0.7", default-features = false, path = "../os_info" } log = "0.4.5" env_logger = "0.9.0" structopt = "0.3" diff --git a/os_info/Cargo.toml b/os_info/Cargo.toml index c59a2259..acf2a2d4 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.0.6" +version = "3.0.7" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"