Skip to content

Commit

Permalink
Merge pull request #265 from stanislav-tkach/release-3-0-6
Browse files Browse the repository at this point in the history
Release the 3.0.6 version
  • Loading branch information
stanislav-tkach authored May 17, 2021
2 parents e007319 + 3af8e8a commit 2b9fbd4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 6 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.0.6] (2021-05-17)

- Compilation for the DragonFly BSD operating system has been fixed. (#264)

## [3.0.5] (2021-05-13)

- Raspberry Pi OS support has been added. (#262)
Expand Down Expand Up @@ -215,7 +219,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.0.5...HEAD
[Unreleased]: https://github.com/stanislav-tkach/os_info/compare/v3.0.6...HEAD
[3.0.6]: https://github.com/stanislav-tkach/os_info/compare/v3.0.5...v3.0.6
[3.0.5]: https://github.com/stanislav-tkach/os_info/compare/v3.0.4...v3.0.5
[3.0.4]: https://github.com/stanislav-tkach/os_info/compare/v3.0.3...v3.0.4
[3.0.3]: https://github.com/stanislav-tkach/os_info/compare/v3.0.2...v3.0.3
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "os_info"
path = "src/main.rs"

[dependencies]
os_info = { version = "3.0.5", default-features = false, path = "../os_info" }
os_info = { version = "3.0.6", default-features = false, path = "../os_info" }
log = "0.4.5"
env_logger = "0.8.1"
structopt = "0.3"
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.0.5"
version = "3.0.6"
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
7 changes: 6 additions & 1 deletion os_info/src/bitness.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
// spell-checker:ignore getconf

use std::fmt::{self, Display, Formatter};
#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos", target_os = "dragonfly"))]
#[cfg(any(
target_os = "linux",
target_os = "freebsd",
target_os = "macos",
target_os = "dragonfly"
))]
use std::process::{Command, Output};

/// Operating system architecture in terms of how many bits compose the basic values it can deal with.
Expand Down

0 comments on commit 2b9fbd4

Please sign in to comment.