Skip to content

Commit

Permalink
Merge pull request #378 from stanislav-tkach/3-8-2-releaase
Browse files Browse the repository at this point in the history
Release the 3.8.2 version
  • Loading branch information
stanislav-tkach authored Mar 22, 2024
2 parents c6f8294 + b86466a commit 0838f81
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion os_info/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "os_info"
version = "3.8.1"
version = "3.8.2"
authors = ["Jan Schulte <hello@unexpected-co.de>", "Stanislav Tkach <stanislav.tkach@gmail.com>"]
description = "Detect the operating system type and version."
documentation = "https://docs.rs/os_info"
Expand Down
2 changes: 1 addition & 1 deletion os_info/src/illumos/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
Expand Down

0 comments on commit 0838f81

Please sign in to comment.