Skip to content

Commit

Permalink
Release the 3.5.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-tkach committed Sep 18, 2022
1 parent 268bb1c commit 10fc83b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [3.5.1] (2022-09-19)

- Windows 11 detection has been fixed. (#322)

## [3.5.0] (2022-08-01)

- Red Hat Enterprise Linux detection has been improved. (#311)
Expand Down Expand Up @@ -269,7 +273,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.5.0...HEAD
[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.5.1...HEAD
[3.5.1]: https://github.com/stanislav-tkach/os_info/compare/v3.5.0...v3.5.1
[3.5.0]: https://github.com/stanislav-tkach/os_info/compare/v3.4.0...v3.5.0
[3.4.0]: https://github.com/stanislav-tkach/os_info/compare/v3.3.0...v3.4.0
[3.3.0]: https://github.com/stanislav-tkach/os_info/compare/v3.2.0...v3.3.0
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ name = "os_info"
path = "src/main.rs"

[dependencies]
os_info = { version = "3.5.0", default-features = false, path = "../os_info" }
os_info = { version = "3.5.1", default-features = false, path = "../os_info" }
log = "0.4.5"
env_logger = "0.9"
clap = { version = "3", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion os_info/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "os_info"
version = "3.5.0"
version = "3.5.1"
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/windows/winapi.rs
Expand Up @@ -222,7 +222,7 @@ fn edition(version_info: &OSVERSIONINFOEX) -> Option<String> {
} else {
Some("Windows 10")
}
},
}
(10, 0, _) => Some("Windows Server 2016"),
// Windows Vista, 7, 8 and 8.1.
(6, 3, VER_NT_WORKSTATION) => Some("Windows 8.1"),
Expand Down

0 comments on commit 10fc83b

Please sign in to comment.