Skip to content

Commit

Permalink
Merge pull request #323 from stanislav-tkach/releas-3-5-1
Browse files Browse the repository at this point in the history
Release the 3.5.1 version
  • Loading branch information
stanislav-tkach committed Sep 19, 2022
2 parents 268bb1c + 4a13fa0 commit c79cd09
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
# Feel free to bump this version if you need features of newer Rust.
# Sync with badge in README.md
toolchain: 1.41.0
toolchain: 1.45.0
profile: minimal
override: true

Expand Down
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 README.md
Expand Up @@ -12,7 +12,7 @@

**Project details:**
[![LoC](https://tokei.rs/b1/github/stanislav-tkach/os_info)](https://github.com/stanislav-tkach/os_info)
![Rust 1.41+ required](https://img.shields.io/badge/rust-1.41+-blue.svg?label=Required%20Rust)
![Rust 1.45+ required](https://img.shields.io/badge/rust-1.41+-blue.svg?label=Required%20Rust)

## Overview

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 c79cd09

Please sign in to comment.