From 6d77abeb8a70367d3ac48a5e1fe283be98f06cf9 Mon Sep 17 00:00:00 2001 From: svartalf Date: Tue, 9 Jun 2020 09:45:16 +0300 Subject: [PATCH] Preparing for v0.1.0-beta.2 --- heim-cpu/Cargo.toml | 2 +- heim-cpu/src/lib.rs | 2 +- heim-net/Cargo.toml | 2 +- heim-net/src/lib.rs | 2 +- heim-process/Cargo.toml | 6 +++--- heim-process/src/lib.rs | 2 +- heim/Cargo.toml | 8 ++++---- heim/src/lib.rs | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/heim-cpu/Cargo.toml b/heim-cpu/Cargo.toml index d581eef5..b790dccd 100644 --- a/heim-cpu/Cargo.toml +++ b/heim-cpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-cpu" -version = "0.1.0-beta.1" +version = "0.1.0-beta.2" authors = ["svartalf "] edition = "2018" description = "Cross-platform CPU information" diff --git a/heim-cpu/src/lib.rs b/heim-cpu/src/lib.rs index 7f1e892d..804e7b8c 100644 --- a/heim-cpu/src/lib.rs +++ b/heim-cpu/src/lib.rs @@ -6,7 +6,7 @@ //! //! [`os::unix::loadavg`]: ./os/unix/fn.loadavg.html -#![doc(html_root_url = "https://docs.rs/heim-cpu/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-cpu/0.1.0-beta.2")] #![deny( unused, unused_imports, diff --git a/heim-net/Cargo.toml b/heim-net/Cargo.toml index fcac2f35..600430ea 100644 --- a/heim-net/Cargo.toml +++ b/heim-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-net" -version = "0.1.0-beta.1" +version = "0.1.0-beta.2" authors = ["svartalf "] edition = "2018" description = "Cross-platform network information" diff --git a/heim-net/src/lib.rs b/heim-net/src/lib.rs index fa4171f1..51e1e796 100644 --- a/heim-net/src/lib.rs +++ b/heim-net/src/lib.rs @@ -1,6 +1,6 @@ //! Network information. -#![doc(html_root_url = "https://docs.rs/heim-net/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-net/0.1.0-beta.2")] #![deny( unused, unused_imports, diff --git a/heim-process/Cargo.toml b/heim-process/Cargo.toml index 8ea6d9ce..5322c231 100644 --- a/heim-process/Cargo.toml +++ b/heim-process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-process" -version = "0.1.1-beta.1" +version = "0.1.1-beta.2" authors = ["svartalf "] edition = "2018" description = "Cross-platform processes information" @@ -17,7 +17,7 @@ github-actions = { repository = "heim-rs/heim", workflow = "Tier 1 CI" } [dependencies] heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } -heim-cpu = { version = "0.1.0-beta.1", path = "../heim-cpu" } +heim-cpu = { version = "0.1.0-beta.2", path = "../heim-cpu" } cfg-if = "~0.1" libc = "~0.2" lazy_static = "1.3.0" @@ -29,7 +29,7 @@ async-trait = "~0.1" futures = { version = "~0.3", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] -heim-net = { version = "0.1.0-beta.1", path = "../heim-net" } +heim-net = { version = "0.1.0-beta.2", path = "../heim-net" } heim-host = { version = "0.1.0-beta.1", path = "../heim-host" } smol = "~0.1" diff --git a/heim-process/src/lib.rs b/heim-process/src/lib.rs index 62da6607..7f9bb724 100644 --- a/heim-process/src/lib.rs +++ b/heim-process/src/lib.rs @@ -1,6 +1,6 @@ //! System processes information. -#![doc(html_root_url = "https://docs.rs/heim-process/0.1.1-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-process/0.1.1-beta.2")] #![deny( unused, unused_imports, diff --git a/heim/Cargo.toml b/heim/Cargo.toml index 18baa6ee..3c10fc6b 100644 --- a/heim/Cargo.toml +++ b/heim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim" -version = "0.1.0-beta.1" +version = "0.1.0-beta.2" authors = ["svartalf "] edition = "2018" description = "Cross-platform framework for system information" @@ -19,12 +19,12 @@ is-it-maintained-open-issues = { repository = "heim-rs/heim" } [dependencies] heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } -heim-cpu = {version = "0.1.0-beta.1", path = "../heim-cpu", optional = true } +heim-cpu = {version = "0.1.0-beta.2", path = "../heim-cpu", optional = true } heim-disk = {version = "0.1.0-beta.1", path = "../heim-disk", optional = true } heim-host = { version = "0.1.0-beta.1", path = "../heim-host", optional = true } heim-memory = {version = "0.1.0-beta.1", path = "../heim-memory", optional = true } -heim-net = {version = "0.1.0-beta.1", path = "../heim-net", optional = true } -heim-process = { version = "0.1.1-beta.1", path = "../heim-process", optional = true } +heim-net = {version = "0.1.0-beta.2", path = "../heim-net", optional = true } +heim-process = { version = "0.1.1-beta.2", path = "../heim-process", optional = true } heim-virt = { version = "0.1.0-beta.1", path = "../heim-virt", optional = true } heim-sensors = { version = "0.1.0-beta.1", path = "../heim-sensors", optional = true } diff --git a/heim/src/lib.rs b/heim/src/lib.rs index 43a6af7f..be321184 100644 --- a/heim/src/lib.rs +++ b/heim/src/lib.rs @@ -44,7 +44,7 @@ //! therefore documentation might look terrible in some places, //! consider checking the sources or sub-crates documentation in such case. -#![doc(html_root_url = "https://docs.rs/heim/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim/0.1.0-beta.2")] #![deny( unused, unused_imports,