From b86466a3a9052a1aee804940b747626c0c67b24b Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Fri, 22 Mar 2024 20:58:07 +0100 Subject: [PATCH] Release the 3.8.2 version --- CHANGELOG.md | 11 ++++++++--- cli/Cargo.toml | 2 +- os_info/Cargo.toml | 2 +- os_info/src/illumos/mod.rs | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c098b3..0bf5e2a 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.8.2] (2024-03-22) + +- Build on FreeSBD has been fixed once again. (#377) + +## [3.8.1] (2024-03-17) + - Build on FreeSBD has been fixed. (#372) - Build on Illumos has been fixed. (#373) @@ -12,8 +18,6 @@ All notable changes to this project will be documented in this file. - Few more regressions introduced in the `3.8.0` release were (hopefully) fixed. -## [3.8.1] (2024-03-17) - ## [3.8.0] (2024-03-12) - The `windows-sys` crate instead of `winapi` is now used internally. (#341) @@ -327,7 +331,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.8.1...HEAD +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.8.2...HEAD +[3.8.1]: https://github.com/stanislav-tkach/os_info/compare/v3.8.1...v3.8.2 [3.8.1]: https://github.com/stanislav-tkach/os_info/compare/v3.8.0...v3.8.1 [3.8.0]: https://github.com/stanislav-tkach/os_info/compare/v3.7.0...v3.8.0 [3.7.0]: https://github.com/stanislav-tkach/os_info/compare/v3.6.0...v3.7.0 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 28f1e45..37e4aa2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -18,7 +18,7 @@ name = "os_info" path = "src/main.rs" [dependencies] -os_info = { version = "3.8.1", default-features = false, path = "../os_info" } +os_info = { version = "3.8.2", default-features = false, path = "../os_info" } log.workspace = true env_logger = "0.11" clap = { version = "4", features = ["derive"] } diff --git a/os_info/Cargo.toml b/os_info/Cargo.toml index 53da7d2..11dd9b3 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.8.1" +version = "3.8.2" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info" diff --git a/os_info/src/illumos/mod.rs b/os_info/src/illumos/mod.rs index 1d6a7d2..2085d3e 100644 --- a/os_info/src/illumos/mod.rs +++ b/os_info/src/illumos/mod.rs @@ -25,7 +25,7 @@ pub fn current_platform() -> Info { fn get_os() -> Type { match uname("-o").as_deref() { - "illumos" => Type::Illumos, + Some("illumos") => Type::Illumos, _ => Type::Unknown, } }