Skip to content

Commit 616c851

Browse files
committed
Bump version to 3.0.0.
1 parent a6d6da9 commit 616c851

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 3.0.0 on 03-09-2025
2+
3+
**Breaking changes**:
4+
5+
- The `ThreadPriorityValue::MAX` and `ThreadPriorityValue::MIN` are now
6+
of type `ThreadPriorityValue` itself, instead of `u8`. Addresses the
7+
issue #38.
8+
19
# 2.1.1 on 03-09-2025
210

311
- Corrected the git history.

Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thread-priority"
3-
version = "2.1.1"
3+
version = "3.0.0"
44
authors = ["Victor Polevoy <[email protected]>"]
55
description = "Library for managing threads priority and schedule policies"
66
repository = "https://github.com/iddm/thread-priority"
@@ -29,4 +29,9 @@ libc = ">=0.2.161"
2929

3030
[target.'cfg(windows)'.dependencies]
3131
libc = ">=0.2.123"
32-
windows = { version = "0.61", features = ["Win32", "Win32_System", "Win32_System_Threading", "Win32_System_WindowsProgramming"] }
32+
windows = { version = "0.61", features = [
33+
"Win32",
34+
"Win32_System",
35+
"Win32_System_Threading",
36+
"Win32_System_WindowsProgramming",
37+
] }

0 commit comments

Comments
 (0)