From 1c939f17b58b28bab36bec370e42ef3b33fbbb8d Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Sat, 4 Jan 2025 10:35:17 +0100 Subject: [PATCH] Release the 3.9.2 version --- CHANGELOG.md | 8 +++++++- cli/Cargo.toml | 2 +- os_info/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed1b95..f9bd876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [3.9.2] (2025-01-05) + +- Fix `uname` usage on NetBSD. (#392) + ## [3.9.1] (2024-12-22) - Reduce the published crate size by excluding the test data. (#390) @@ -346,7 +350,9 @@ 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.9.1...HEAD +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.9.2...HEAD + +[3.9.2]: https://github.com/stanislav-tkach/os_info/compare/v3.9.1...v3.9.2 [3.9.1]: https://github.com/stanislav-tkach/os_info/compare/v3.9.0...v3.9.1 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 64b0ea7..28a0979 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.9.1", default-features = false, path = "../os_info" } +os_info = { version = "3.9.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 1709319..1b3b8e5 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.9.1" +version = "3.9.2" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"