All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
-
Added:
os_utils (lib.rs) ├── info │ ├── OsInfo │ ├── OsMeta │ └── os │ ├── linux │ │ └── ubuntu │ │ └── OsRelease │ ├── macos │ │ └── OsRelease │ └── windows │ └── OsRelease └── version ├── Version └── OsVersion
-
Added
OsVersion::get()
to query the platform-specific OS version- Contains build number on Windows
-
Added
OsInfo::get()
to query all available information about the OS -
Added
Version::parse()
, which calls theFromStr
impl -
Added conversions between
Version
andOsVersion
- A
Version
reference can be taken straight from anOsVersion
- A