Skip to content

Commit

Permalink
Merge pull request #93 from DarkEld3r/1-1-0-release
Browse files Browse the repository at this point in the history
Release 1.1.0 version
  • Loading branch information
stanislav-tkach authored Oct 13, 2018
2 parents 8594955 + 35ac03d commit 37d636d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ env:
jobs:
include:
# Formatting & other lints that do not require compilation
- env: FEATURE=lints
- name: lints
install:
- cargo-audit -V || cargo install cargo-audit --force
- cargo-deadlinks -V | grep $DEADLINKS_VERS || cargo install cargo-deadlinks --vers $DEADLINKS_VERS --force
Expand All @@ -55,15 +55,15 @@ jobs:
- cargo deadlinks --dir target/doc

# Clippy linting
- env: FEATURE=clippy
- name: clippy
rust: nightly-2018-05-26
install:
- cargo clippy --version | grep $CLIPPY_VERS || cargo install clippy --force --vers $CLIPPY_VERS
script:
- cargo clippy --all -- -D warnings

# Tests
- env: FEATURE=test
- name: tests
script:
- cargo test --all
- cargo run --example print_version
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "os_info"
version = "1.0.3"
version = "1.1.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 All @@ -21,20 +21,20 @@ is-it-maintained-open-issues = { repository = "DarkEld3r/os_info" }

[dependencies]
log = "0.4.5"
serde = "1.0"
serde_derive = "1.0"
serde = "1.0.0"
serde_derive = "1.0.0"

[target.'cfg(not(windows))'.dependencies]
regex="0.2.10"
regex="1.0.5"

[target.'cfg(target_os = "macos")'.dependencies]
lazy_static = "1.0.0"
lazy_static = "1.1.0"

[target.'cfg(windows)'.dependencies]
winapi = "0.2.8"
user32-sys = "0.2.0"
kernel32-sys = "0.2.2"

[dev-dependencies]
itertools = "0.7.3"
itertools = "0.7.8"
pretty_assertions = "0.5.1"
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.1.0](https://github.com/darkeld3r/os_info/tree/v1.1.0) (2018-10-13)

- Serialization support (`serde`) has been added to all public data types. (#91)

- Dependencies have been updated. (#92, #93)

## [1.0.3](https://github.com/darkeld3r/os_info/tree/v1.0.3) (2018-09-23)

- Fixed linker errors for 32-bit msvc builds. (#88)
Expand Down
2 changes: 1 addition & 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.0.3"
os_info = "1.1.0"
```

## Example
Expand Down
1 change: 1 addition & 0 deletions cspell-dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ macos
msvc
println
redhat
serde
toml
winapi
xenial

0 comments on commit 37d636d

Please sign in to comment.