From a9cf8871f27a4d0f8b7d3acee945bd706a01399a Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Thu, 3 Feb 2022 13:31:33 +0200 Subject: [PATCH] Release the 3.2.0 version --- CHANGELOG.md | 11 ++++++++--- cli/Cargo.toml | 4 ++-- os_info/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d57c1e94..7ab13e99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] -- FIXME: Mention command line tool parameters change. +## [3.2.0] (2022-02-04) + +- MidnightBSD support has been added. (#290) + +- Bitness detection has been fixed for SPARC v9 platform on NetBSD and OpenBSD. (#291) ## [3.1.0] (2022-01-14) @@ -241,8 +245,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.10.0...HEAD -[3.1.0]: https://github.com/stanislav-tkach/os_info/compare/v3.0.9...v3.10.0 +[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.2.0...HEAD +[3.2.0]: https://github.com/stanislav-tkach/os_info/compare/v3.1.0...v3.2.0 +[3.1.0]: https://github.com/stanislav-tkach/os_info/compare/v3.0.9...v3.1.0 [3.0.9]: https://github.com/stanislav-tkach/os_info/compare/v3.0.8...v3.0.9 [3.0.8]: https://github.com/stanislav-tkach/os_info/compare/v3.0.7...v3.0.8 [3.0.7]: https://github.com/stanislav-tkach/os_info/compare/v3.0.6...v3.0.7 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ad8c10b6..3ddbb614 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info_cli" -version = "1.0.2" +version = "2.0.0" authors = ["Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info" @@ -17,7 +17,7 @@ name = "os_info" path = "src/main.rs" [dependencies] -os_info = { version = "3.1.0", default-features = false, path = "../os_info" } +os_info = { version = "3.2.0", default-features = false, path = "../os_info" } log = "0.4.5" env_logger = "0.9" clap = { version = "3", features = ["derive"] } diff --git a/os_info/Cargo.toml b/os_info/Cargo.toml index fe82a085..4a7312c0 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "3.1.0" +version = "3.2.0" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"