Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release the 3.9.1 version #391

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [3.9.1] (2024-12-22)

- Reduce the published crate size by excluding the test data. (#390)

## [3.9.0] (2024-11-30)

- Nobara Linux support has been added. (#379)
Expand Down Expand Up @@ -342,7 +346,9 @@ 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.9.0...HEAD
[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.9.1...HEAD

[3.9.1]: https://github.com/stanislav-tkach/os_info/compare/v3.9.0...v3.9.1

[3.9.0]: https://github.com/stanislav-tkach/os_info/compare/v3.8.2...v3.9.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.9.0", default-features = false, path = "../os_info" }
os_info = { version = "3.9.1", 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.9.0"
version = "3.9.1"
authors = ["Jan Schulte <[email protected]>", "Stanislav Tkach <[email protected]>"]
description = "Detect the operating system type and version."
documentation = "https://docs.rs/os_info"
Expand Down
Loading