From d189e7de3f7401169c6425ec7709daa783f28289 Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Sat, 8 Feb 2025 20:12:53 +0100 Subject: [PATCH] Release the 3.10.0 version --- CHANGELOG.md | 18 ++++++++++++------ cli/Cargo.toml | 2 +- os_info/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bd876..2dbdf5e 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.10.0] (2025-02-09) + +- Bluefin Linux support has been added. (#394) + ## [3.9.2] (2025-01-05) - Fix `uname` usage on NetBSD. (#392) @@ -163,11 +167,11 @@ All notable changes to this project will be documented in this file. - Linux Mint support has been added. (#233) - Operating system type detection has been fixed for the following Linux distributions: - - Amazon Linux. (#225, #226) - - Red Hat Enterprise Linux. (#228) - - Suse. (#229) - - Fedora. (#230) - - Alpine Linux. (#235) + - Amazon Linux. (#225, #226) + - Red Hat Enterprise Linux. (#228) + - Suse. (#229) + - Fedora. (#230) + - Alpine Linux. (#235) - Log level for the message about the absent `lsb_release` has been reduced from `warn` to `debug`. (#237) @@ -350,7 +354,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.2...HEAD +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.10.0...HEAD + +[3.10.0]: https://github.com/stanislav-tkach/os_info/compare/v3.9.2...v3.10.0 [3.9.2]: https://github.com/stanislav-tkach/os_info/compare/v3.9.1...v3.9.2 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 28a0979..81fc869 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.2", default-features = false, path = "../os_info" } +os_info = { version = "3.10.0", 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 1b3b8e5..b4d3cb1 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.9.2" +version = "3.10.0" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"