From 2b1bd585893312ff265344fa9933e9238a1073a7 Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Sun, 22 Dec 2024 13:00:49 +0100 Subject: [PATCH] Release the 3.9.1 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 63c3ce5..6ed1b95 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.1] (2024-12-22) + +- Reduce the published crate size by excluding the test data. (#390) + ## [3.9.0] (2024-11-30) - Nobara Linux support has been added. (#379) @@ -342,7 +346,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.0...HEAD +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.9.1...HEAD + +[3.9.1]: https://github.com/stanislav-tkach/os_info/compare/v3.9.0...v3.9.1 [3.9.0]: https://github.com/stanislav-tkach/os_info/compare/v3.8.2...v3.9.0 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b5fbfdd..64b0ea7 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.0", default-features = false, path = "../os_info" } +os_info = { version = "3.9.1", 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 c7a67ba..1709319 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.9.0" +version = "3.9.1" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"