diff --git a/CHANGELOG.md b/CHANGELOG.md index 8da5bd25..24b1598a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [2.0.6] (2020-05-24) + +- Pop!_OS support has been added. (#173) + +- Manjaro support has been added. (#180) + +- Solus support has been added. (#182) + ## [2.0.5] (2020-05-13) - The markdown (README.md) test has been fixed. (#167) @@ -151,9 +159,10 @@ 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/darkeld3r/os_info/compare/v2.0.5...HEAD -[2.0.5]: https://github.com/darkeld3r/os_info/compare/v2.0.4...v2.0.5 -[2.0.4]: https://github.com/darkeld3r/os_info/compare/v2.0.3...v2.0.4 +[Unreleased]: https://github.com/darkeld3r/os_info/compare/v2.0.6...HEAD +[2.0.6]: https://github.com/darkeld3r/os_info/compare/2.0.5...v2.0.6 +[2.0.5]: https://github.com/darkeld3r/os_info/compare/2.0.4...2.0.5 +[2.0.4]: https://github.com/darkeld3r/os_info/compare/v2.0.3...2.0.4 [2.0.3]: https://github.com/darkeld3r/os_info/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/darkeld3r/os_info/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/darkeld3r/os_info/compare/v2.0...v2.0.1 diff --git a/README.md b/README.md index a93a2e73..6c06252f 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ To use this crate, add `os_info` as a dependency to your project's Cargo.toml: ```toml [dependencies] -os_info = "2.0.5" +os_info = "2.0.6" ``` This project has `serde` as an optional dependency, so if you don't need it, then @@ -38,7 +38,7 @@ you can speed up compilation disabling it: ```toml [dependencies] -os_info = { version = "2.0.5", default-features = false } +os_info = { version = "2.0.6", default-features = false } ``` #### Example @@ -96,6 +96,8 @@ Right now, the following operating system types can be returned: - Alpine - SUSE Linux Enterprise - openSUSE +- Solus +- Manjaro - Macos - Redox - Windows diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 966dfad1..b56929fa 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -17,7 +17,7 @@ name = "os_info" path = "src/main.rs" [dependencies] -os_info = { version = "2.0.5", default-features = false, path = "../os_info" } +os_info = { version = "2.0.6", default-features = false, path = "../os_info" } log = "0.4.5" env_logger = "0.7.1" structopt = "0.3" diff --git a/cspell-dictionary.txt b/cspell-dictionary.txt index 7cab4a6c..df5458d7 100644 --- a/cspell-dictionary.txt +++ b/cspell-dictionary.txt @@ -4,6 +4,7 @@ concat emscripten libntdll macos +manjaro msvc println redhat @@ -12,4 +13,3 @@ structopt toml winapi xenial -manjaro diff --git a/os_info/Cargo.toml b/os_info/Cargo.toml index 60fa6a93..737c3dea 100644 --- a/os_info/Cargo.toml +++ b/os_info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "os_info" -version = "2.0.5" +version = "2.0.6" authors = ["Jan Schulte ", "Stanislav Tkach "] description = "Detect the operating system type and version." documentation = "https://docs.rs/os_info"