Skip to content

Commit

Permalink
Merge pull request #124 from DarkEld3r/release-1-3-1
Browse files Browse the repository at this point in the history
Release 1.3.1 version
  • Loading branch information
stanislav-tkach authored Jan 15, 2020
2 parents 38c92b5 + c0c0198 commit 875a919
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 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.0"
version = "1.3.1"
authors = ["Jan Schulte <hello@unexpected-co.de>", "Stanislav Tkach <stanislav.tkach@gmail.com>"]
description = "Detect the operating system type and version."
documentation = "https://docs.rs/os_info"
Expand Down
9 changes: 7 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.2.0] (2020-01-14)
## [1.3.1] (2020-01-15)

- Missing winapi features have been added. (#123)

## [1.3.0] (2020-01-14)

- `Info` has been extended with operating system bitness. See `Info::bitness`
for details. Currently implemented only for Windows. (#119)
Expand Down Expand Up @@ -104,7 +108,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...HEAD
[Unreleased]: https://github.com/darkeld3r/os_info/compare/v1.3.1...HEAD
[1.3.1]: https://github.com/darkeld3r/os_info/compare/v1.3...v1.3.1
[1.3.0]: https://github.com/darkeld3r/os_info/compare/v1.2...v1.3
[1.2.0]: https://github.com/darkeld3r/os_info/compare/v1.1.3...v1.2
[1.1.3]: https://github.com/darkeld3r/os_info/compare/v1.1.2...v1.1.3
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To use this crate, add `os_info` as a dependency to your project's Cargo.toml:

```toml
[dependencies]
os_info = "1.3.0"
os_info = "1.3.1"
```

## Example
Expand All @@ -46,6 +46,7 @@ println!("OS information: {}", info);
// Print information separately:
println!("Type: {}", info.os_type());
println!("Version: {}", info.version());
println!("Bitness: {}", info.bitness());
```

Right now, the following operating system types can be returned:
Expand Down
4 changes: 0 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ environment:
- channel: stable
target: i686-pc-windows-gnu

matrix:
allow_failures:
- channel: nightly

install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %channel% --default-host %target%
Expand Down

0 comments on commit 875a919

Please sign in to comment.