Skip to content

Commit

Permalink
Merge pull request #141 from DarkEld3r/release-2-0-0
Browse files Browse the repository at this point in the history
Release 2.0.0 version
  • Loading branch information
stanislav-tkach authored Feb 10, 2020
2 parents 96f9042 + 0ce2e03 commit 39486b9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "os_info"
version = "1.3.3"
version = "2.0.0"
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
11 changes: 10 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.0.0] (2020-02-11)

- `Bitness` and `Type` enums have been marked as `non_exhaustive`. (#140)

- SUSE Enterprise and openSUSE support has been added. (#135)

- `serde` has been made an optional dependency. (#138)

## [1.3.3] (2020-01-24)

- `Version`'s `Display` implementation has been fixed. (#128)
Expand Down Expand Up @@ -116,7 +124,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/darkeld3r/os_info/compare/v1.3.3...HEAD
[Unreleased]: https://github.com/darkeld3r/os_info/compare/v2.0...HEAD
[1.3.2]: https://github.com/darkeld3r/os_info/compare/v1.3.3...v2.0
[1.3.2]: https://github.com/darkeld3r/os_info/compare/v1.3.2...v1.3.3
[1.3.2]: https://github.com/darkeld3r/os_info/compare/v1.3.1...v1.3.2
[1.3.1]: https://github.com/darkeld3r/os_info/compare/v1.3...v1.3.1
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

**Project details:**
[![LoC](https://tokei.rs/b1/github/darkeld3r/os_info)](https://github.com/darkeld3r/os_info)
![rust 1.32+ required](https://img.shields.io/badge/rust-1.32+-blue.svg?label=Required%20Rust)
![rust 1.41+ required](https://img.shields.io/badge/rust-1.41+-blue.svg?label=Required%20Rust)
[![dependency status](https://deps.rs/repo/github/darkeld3r/os_info/status.svg)](https://deps.rs/repo/github/darkeld3r/os_info)

## Overview
Expand All @@ -30,7 +30,15 @@ To use this crate, add `os_info` as a dependency to your project's Cargo.toml:

```toml
[dependencies]
os_info = "1.3.3"
os_info = "2.0.0"
```

This project has `serde` as an optional dependency, so if you don't need it, then
you can speed up compilation disabling it:

```toml
[dependencies]
os_info = { version = "2.0.0", default-features = false }
```

## Example
Expand Down

0 comments on commit 39486b9

Please sign in to comment.