From 53bbfbec6bbfa586730b9d9d6846025f4fc4fdb5 Mon Sep 17 00:00:00 2001 From: svartalf Date: Wed, 24 Jul 2019 16:54:07 +0300 Subject: [PATCH] Release 0.0.5 --- CHANGELOG.md | 2 +- README.md | 2 +- heim-common/Cargo.toml | 4 ++-- heim-common/README.md | 2 +- heim-common/src/lib.rs | 2 +- heim-cpu/Cargo.toml | 6 +++--- heim-cpu/README.md | 2 +- heim-cpu/src/lib.rs | 2 +- heim-derive/Cargo.toml | 2 +- heim-derive/README.md | 2 +- heim-derive/src/lib.rs | 2 +- heim-disk/Cargo.toml | 6 +++--- heim-disk/README.md | 2 +- heim-disk/src/lib.rs | 2 +- heim-host/Cargo.toml | 6 +++--- heim-host/README.md | 2 +- heim-host/src/lib.rs | 2 +- heim-memory/Cargo.toml | 6 +++--- heim-memory/README.md | 2 +- heim-memory/src/lib.rs | 2 +- heim-net/Cargo.toml | 6 +++--- heim-net/README.md | 2 +- heim-net/src/lib.rs | 2 +- heim-process/Cargo.toml | 6 +++--- heim-process/README.md | 2 +- heim-process/src/lib.rs | 2 +- heim-virt/Cargo.toml | 4 ++-- heim-virt/README.md | 2 +- heim-virt/src/lib.rs | 2 +- heim/Cargo.toml | 20 ++++++++++---------- heim/src/lib.rs | 2 +- 31 files changed, 54 insertions(+), 54 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10166d19..d942bc9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.0.5] - 2019-07-24 ### Added diff --git a/README.md b/README.md index 2df23f69..2ea8a504 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim.svg)](https://crates.io/crates/heim) [![Latest Version](https://docs.rs/heim/badge.svg)](https://docs.rs/heim) -[![dependency status](https://deps.rs/crate/heim/0.0.4/status.svg)](https://deps.rs/crate/heim/0.0.4) +[![dependency status](https://deps.rs/crate/heim/0.0.5/status.svg)](https://deps.rs/crate/heim/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Minimum rustc version](https://img.shields.io/badge/rustc-1.36+-green.svg) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) diff --git a/heim-common/Cargo.toml b/heim-common/Cargo.toml index 4ebe6c93..b5f2005c 100644 --- a/heim-common/Cargo.toml +++ b/heim-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-common" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Common stuff shared across heim project crates" @@ -15,7 +15,7 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } cfg-if = "0.1.7" futures-preview = "0.3.0-alpha.17" diff --git a/heim-common/README.md b/heim-common/README.md index c98ead3d..8a02359a 100644 --- a/heim-common/README.md +++ b/heim-common/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-common.svg)](https://crates.io/crates/heim-common) [![Latest Version](https://docs.rs/heim/badge.svg)](https://docs.rs/heim-common) -[![dependency status](https://deps.rs/crate/heim-common/0.0.4/status.svg)](https://deps.rs/crate/heim-common/0.0.4) +[![dependency status](https://deps.rs/crate/heim-common/0.0.5/status.svg)](https://deps.rs/crate/heim-common/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Minimum rustc version](https://img.shields.io/badge/rustc-1.36+-green.svg) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) diff --git a/heim-common/src/lib.rs b/heim-common/src/lib.rs index df1afa5a..edf732a2 100644 --- a/heim-common/src/lib.rs +++ b/heim-common/src/lib.rs @@ -2,7 +2,7 @@ //! //! Do **NOT** use it directly. -#![doc(html_root_url = "https://docs.rs/heim-common/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-common/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-cpu/Cargo.toml b/heim-cpu/Cargo.toml index dcb6e0d6..83e0713d 100644 --- a/heim-cpu/Cargo.toml +++ b/heim-cpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-cpu" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform CPU information" @@ -15,8 +15,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } lazy_static = "1.3.0" cfg-if = "0.1.7" diff --git a/heim-cpu/README.md b/heim-cpu/README.md index 2250156a..8fe93384 100644 --- a/heim-cpu/README.md +++ b/heim-cpu/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-cpu.svg)](https://crates.io/crates/heim-cpu) [![Latest Version](https://docs.rs/heim-cpu/badge.svg)](https://docs.rs/heim-cpu) -[![dependency status](https://deps.rs/crate/heim-cpu/0.0.4/status.svg)](https://deps.rs/crate/heim-cpu/0.0.4) +[![dependency status](https://deps.rs/crate/heim-cpu/0.0.5/status.svg)](https://deps.rs/crate/heim-cpu/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-cpu/src/lib.rs b/heim-cpu/src/lib.rs index 912f5a65..b8bebd11 100644 --- a/heim-cpu/src/lib.rs +++ b/heim-cpu/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `cpu` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-derive/Cargo.toml b/heim-derive/Cargo.toml index 2e640250..7b2bce91 100644 --- a/heim-derive/Cargo.toml +++ b/heim-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-derive" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Derive macros for heim crates" diff --git a/heim-derive/README.md b/heim-derive/README.md index 7741ff45..a6144479 100644 --- a/heim-derive/README.md +++ b/heim-derive/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-derive.svg)](https://crates.io/crates/heim-derive) [![Latest Version](https://docs.rs/heim-derive/badge.svg)](https://docs.rs/heim-derive) -[![dependency status](https://deps.rs/crate/heim-derive/0.0.4/status.svg)](https://deps.rs/crate/heim-derive/0.0.4) +[![dependency status](https://deps.rs/crate/heim-derive/0.0.5/status.svg)](https://deps.rs/crate/heim-derive/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-derive/src/lib.rs b/heim-derive/src/lib.rs index 03fae1ba..0605a5fa 100644 --- a/heim-derive/src/lib.rs +++ b/heim-derive/src/lib.rs @@ -2,7 +2,7 @@ //! //! Do not use directly. -#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.5")] #![recursion_limit = "128"] #![deny( unused, diff --git a/heim-disk/Cargo.toml b/heim-disk/Cargo.toml index a20a2f1e..3971f402 100644 --- a/heim-disk/Cargo.toml +++ b/heim-disk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-disk" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform disk information" @@ -15,8 +15,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.7" bitflags = "1.0.4" diff --git a/heim-disk/README.md b/heim-disk/README.md index 52f44f1e..2e1912dc 100644 --- a/heim-disk/README.md +++ b/heim-disk/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-disk.svg)](https://crates.io/crates/heim-disk) [![Latest Version](https://docs.rs/heim-disk/badge.svg)](https://docs.rs/heim-disk) -[![dependency status](https://deps.rs/crate/heim-disk/0.0.4/status.svg)](https://deps.rs/crate/heim-disk/0.0.4) +[![dependency status](https://deps.rs/crate/heim-disk/0.0.5/status.svg)](https://deps.rs/crate/heim-disk/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-disk/src/lib.rs b/heim-disk/src/lib.rs index 70857e09..bb698ec6 100644 --- a/heim-disk/src/lib.rs +++ b/heim-disk/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `disk` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-host/Cargo.toml b/heim-host/Cargo.toml index 755fc0c7..e6116e67 100644 --- a/heim-host/Cargo.toml +++ b/heim-host/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-host" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform host information" @@ -16,8 +16,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.7" platforms = "0.2.0" libc = "0.2.58" diff --git a/heim-host/README.md b/heim-host/README.md index fcbf4a19..7c604c72 100644 --- a/heim-host/README.md +++ b/heim-host/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-host.svg)](https://crates.io/crates/heim-host) [![Latest Version](https://docs.rs/heim-host/badge.svg)](https://docs.rs/heim-host) -[![dependency status](https://deps.rs/crate/heim-host/0.0.4/status.svg)](https://deps.rs/crate/heim-host/0.0.4) +[![dependency status](https://deps.rs/crate/heim-host/0.0.5/status.svg)](https://deps.rs/crate/heim-host/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-host/src/lib.rs b/heim-host/src/lib.rs index f2227934..b161f260 100644 --- a/heim-host/src/lib.rs +++ b/heim-host/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `host` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-host/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-host/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-memory/Cargo.toml b/heim-memory/Cargo.toml index 54e01816..0d3f7e47 100644 --- a/heim-memory/Cargo.toml +++ b/heim-memory/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-memory" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform memory information" @@ -15,8 +15,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.7" [target.'cfg(target_os = "windows")'.dependencies] diff --git a/heim-memory/README.md b/heim-memory/README.md index 875325ef..360e0147 100644 --- a/heim-memory/README.md +++ b/heim-memory/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-memory.svg)](https://crates.io/crates/heim-memory) [![Latest Version](https://docs.rs/heim-memory/badge.svg)](https://docs.rs/heim-memory) -[![dependency status](https://deps.rs/crate/heim-memory/0.0.4/status.svg)](https://deps.rs/crate/heim-memory/0.0.4) +[![dependency status](https://deps.rs/crate/heim-memory/0.0.5/status.svg)](https://deps.rs/crate/heim-memory/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-memory/src/lib.rs b/heim-memory/src/lib.rs index 27586a70..3980b51e 100644 --- a/heim-memory/src/lib.rs +++ b/heim-memory/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `memory` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-net/Cargo.toml b/heim-net/Cargo.toml index 73a75db1..fd6306ce 100644 --- a/heim-net/Cargo.toml +++ b/heim-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-net" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform network information" @@ -15,8 +15,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.7" bitflags = "1.0.4" macaddr = "0.1" diff --git a/heim-net/README.md b/heim-net/README.md index d0a3a687..130ba230 100644 --- a/heim-net/README.md +++ b/heim-net/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-net.svg)](https://crates.io/crates/heim-net) [![Latest Version](https://docs.rs/heim-net/badge.svg)](https://docs.rs/heim-net) -[![dependency status](https://deps.rs/crate/heim-net/0.0.4/status.svg)](https://deps.rs/crate/heim-net/0.0.4) +[![dependency status](https://deps.rs/crate/heim-net/0.0.5/status.svg)](https://deps.rs/crate/heim-net/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-net/src/lib.rs b/heim-net/src/lib.rs index 933299d1..f15bfd73 100644 --- a/heim-net/src/lib.rs +++ b/heim-net/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `net` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-net/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-net/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-process/Cargo.toml b/heim-process/Cargo.toml index cc7fd620..6ad65e3c 100644 --- a/heim-process/Cargo.toml +++ b/heim-process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-process" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform processes information" @@ -15,8 +15,8 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.7" libc = "0.2.58" diff --git a/heim-process/README.md b/heim-process/README.md index c7c09018..f7916be5 100644 --- a/heim-process/README.md +++ b/heim-process/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-process.svg)](https://crates.io/crates/heim-process) [![Latest Version](https://docs.rs/heim-process/badge.svg)](https://docs.rs/heim-process) -[![dependency status](https://deps.rs/crate/heim-process/0.0.4/status.svg)](https://deps.rs/crate/heim-process/0.0.4) +[![dependency status](https://deps.rs/crate/heim-process/0.0.5/status.svg)](https://deps.rs/crate/heim-process/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-process/src/lib.rs b/heim-process/src/lib.rs index f8f5bebf..b22a1af7 100644 --- a/heim-process/src/lib.rs +++ b/heim-process/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `process` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-process/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-process/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim-virt/Cargo.toml b/heim-virt/Cargo.toml index fe3bf23e..a8f700ce 100644 --- a/heim-virt/Cargo.toml +++ b/heim-virt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-virt" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform virtualization system detection" @@ -15,7 +15,7 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-common = { version = "0.0.4", path = "../heim-common" } +heim-common = { version = "0.0.5", path = "../heim-common" } cfg-if = "0.1.9" [target.'cfg(target_os = "linux")'.dependencies] diff --git a/heim-virt/README.md b/heim-virt/README.md index 209a0b8a..a6270d48 100644 --- a/heim-virt/README.md +++ b/heim-virt/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-virt.svg)](https://crates.io/crates/heim-virt) [![Latest Version](https://docs.rs/heim-virt/badge.svg)](https://docs.rs/heim-virt) -[![dependency status](https://deps.rs/crate/heim-virt/0.0.4/status.svg)](https://deps.rs/crate/heim-virt/0.0.4) +[![dependency status](https://deps.rs/crate/heim-virt/0.0.5/status.svg)](https://deps.rs/crate/heim-virt/0.0.5) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-virt/src/lib.rs b/heim-virt/src/lib.rs index fb441632..f539940a 100644 --- a/heim-virt/src/lib.rs +++ b/heim-virt/src/lib.rs @@ -8,7 +8,7 @@ //! See the [issues list](https://github.com/heim-rs/heim/issues?q=is%3Aissue+is%3Aopen+label%3AA-virt) //! for a not supported currently systems. -#![doc(html_root_url = "https://docs.rs/heim-virt/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim-virt/0.0.5")] #![deny( unused, unused_imports, diff --git a/heim/Cargo.toml b/heim/Cargo.toml index a54540bf..666c159d 100644 --- a/heim/Cargo.toml +++ b/heim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim" -version = "0.0.4" +version = "0.0.5" authors = ["svartalf "] edition = "2018" description = "Cross-platform framework for system information" @@ -15,15 +15,15 @@ maintenance = { status = "experimental" } azure-devops = { project = "heim-rs", pipeline = "heim" } [dependencies] -heim-common = { version = "0.0.4", path = "../heim-common" } -heim-derive = { version = "0.0.4", path = "../heim-derive" } -heim-cpu = {version = "0.0.4", path = "../heim-cpu", optional = true } -heim-disk = {version = "0.0.4", path = "../heim-disk", optional = true } -heim-host = { version = "0.0.4", path = "../heim-host", optional = true } -heim-memory = {version = "0.0.4", path = "../heim-memory", optional = true } -heim-net = {version = "0.0.4", path = "../heim-net", optional = true } -heim-process = { version = "0.0.4", path = "../heim-process", optional = true } -heim-virt = { version = "0.0.4", path = "../heim-virt", optional = true } +heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-cpu = {version = "0.0.5", path = "../heim-cpu", optional = true } +heim-disk = {version = "0.0.5", path = "../heim-disk", optional = true } +heim-host = { version = "0.0.5", path = "../heim-host", optional = true } +heim-memory = {version = "0.0.5", path = "../heim-memory", optional = true } +heim-net = {version = "0.0.5", path = "../heim-net", optional = true } +heim-process = { version = "0.0.5", path = "../heim-process", optional = true } +heim-virt = { version = "0.0.5", path = "../heim-virt", optional = true } [dev-dependencies] version-sync = "0.8" diff --git a/heim/src/lib.rs b/heim/src/lib.rs index fe4c79f6..9ef06763 100644 --- a/heim/src/lib.rs +++ b/heim/src/lib.rs @@ -29,7 +29,7 @@ //! If you are browsing this documentation via [docs.rs](https://docs.rs/heim), //! do not forget to use the platform selector at the page header. -#![doc(html_root_url = "https://docs.rs/heim/0.0.4")] +#![doc(html_root_url = "https://docs.rs/heim/0.0.5")] #![deny( unused, unused_imports,