Skip to content

Commit c79cd09

Browse files
Merge pull request #323 from stanislav-tkach/releas-3-5-1
Release the 3.5.1 version
2 parents 268bb1c + 4a13fa0 commit c79cd09

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.github/workflows/version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
# Feel free to bump this version if you need features of newer Rust.
2121
# Sync with badge in README.md
22-
toolchain: 1.41.0
22+
toolchain: 1.45.0
2323
profile: minimal
2424
override: true
2525

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [3.5.1] (2022-09-19)
8+
9+
- Windows 11 detection has been fixed. (#322)
10+
711
## [3.5.0] (2022-08-01)
812

913
- Red Hat Enterprise Linux detection has been improved. (#311)
@@ -269,7 +273,8 @@ All notable changes to this project will be documented in this file.
269273

270274
The first release containing only minor infrastructural changes and based on [os_type](https://github.com/schultyy/os_type).
271275

272-
[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.5.0...HEAD
276+
[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.5.1...HEAD
277+
[3.5.1]: https://github.com/stanislav-tkach/os_info/compare/v3.5.0...v3.5.1
273278
[3.5.0]: https://github.com/stanislav-tkach/os_info/compare/v3.4.0...v3.5.0
274279
[3.4.0]: https://github.com/stanislav-tkach/os_info/compare/v3.3.0...v3.4.0
275280
[3.3.0]: https://github.com/stanislav-tkach/os_info/compare/v3.2.0...v3.3.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

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

1717
## Overview
1818

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "os_info"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
os_info = { version = "3.5.0", default-features = false, path = "../os_info" }
20+
os_info = { version = "3.5.1", default-features = false, path = "../os_info" }
2121
log = "0.4.5"
2222
env_logger = "0.9"
2323
clap = { version = "3", features = ["derive"] }

os_info/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "os_info"
3-
version = "3.5.0"
3+
version = "3.5.1"
44
authors = ["Jan Schulte <[email protected]>", "Stanislav Tkach <[email protected]>"]
55
description = "Detect the operating system type and version."
66
documentation = "https://docs.rs/os_info"

os_info/src/windows/winapi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ fn edition(version_info: &OSVERSIONINFOEX) -> Option<String> {
222222
} else {
223223
Some("Windows 10")
224224
}
225-
},
225+
}
226226
(10, 0, _) => Some("Windows Server 2016"),
227227
// Windows Vista, 7, 8 and 8.1.
228228
(6, 3, VER_NT_WORKSTATION) => Some("Windows 8.1"),

0 commit comments

Comments
 (0)