From c111eb440eba8698ee0722377f9773ac7dbf6841 Mon Sep 17 00:00:00 2001 From: svartalf Date: Tue, 15 Dec 2020 16:19:01 +0100 Subject: [PATCH] Release v0.1.0-rc.1 --- heim-common/Cargo.toml | 2 +- heim-common/src/lib.rs | 2 +- heim-cpu/Cargo.toml | 8 ++++---- heim-cpu/src/lib.rs | 2 +- heim-derive/Cargo.toml | 2 +- heim-derive/src/lib.rs | 2 +- heim-disk/Cargo.toml | 8 ++++---- heim-disk/src/lib.rs | 2 +- heim-host/Cargo.toml | 8 ++++---- heim-host/src/lib.rs | 2 +- heim-memory/Cargo.toml | 8 ++++---- heim-memory/src/lib.rs | 2 +- heim-net/Cargo.toml | 8 ++++---- heim-net/src/lib.rs | 2 +- heim-process/Cargo.toml | 16 ++++++++-------- heim-process/src/lib.rs | 2 +- heim-runtime/Cargo.toml | 2 +- heim-runtime/src/lib.rs | 2 +- heim-sensors/Cargo.toml | 8 ++++---- heim-sensors/src/lib.rs | 2 +- heim-virt/Cargo.toml | 8 ++++---- heim-virt/src/lib.rs | 2 +- heim/Cargo.toml | 24 ++++++++++++------------ heim/src/lib.rs | 2 +- 24 files changed, 63 insertions(+), 63 deletions(-) diff --git a/heim-common/Cargo.toml b/heim-common/Cargo.toml index ab245f48..483eef15 100644 --- a/heim-common/Cargo.toml +++ b/heim-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-common" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Common stuff shared across heim project crates" diff --git a/heim-common/src/lib.rs b/heim-common/src/lib.rs index ad56915d..61e67efa 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.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-common/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-cpu/Cargo.toml b/heim-cpu/Cargo.toml index aab9677a..d3930db2 100644 --- a/heim-cpu/Cargo.toml +++ b/heim-cpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-cpu" -version = "0.1.0-beta.3" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform CPU information" @@ -11,8 +11,8 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } futures = { version = "~0.3", default-features = false, features = ["std"] } lazy_static = "1.3.0" cfg-if = "~1.0" @@ -43,7 +43,7 @@ libc = "~ 0.2" mach = "0.3.2" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" futures = "~0.3" version-sync = "0.9" diff --git a/heim-cpu/src/lib.rs b/heim-cpu/src/lib.rs index 8d05f9dc..f65f2886 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.3")] +#![doc(html_root_url = "https://docs.rs/heim-cpu/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-derive/Cargo.toml b/heim-derive/Cargo.toml index 6bd1d1c9..3d6615ce 100644 --- a/heim-derive/Cargo.toml +++ b/heim-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-derive" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Derive macros for heim crates" diff --git a/heim-derive/src/lib.rs b/heim-derive/src/lib.rs index 12c8ac54..199f70be 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.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-derive/0.1.0-rc.1")] #![recursion_limit = "128"] #![deny( unused, diff --git a/heim-disk/Cargo.toml b/heim-disk/Cargo.toml index 998e40e9..274c1525 100644 --- a/heim-disk/Cargo.toml +++ b/heim-disk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-disk" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform disk information" @@ -11,8 +11,8 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" bitflags = "1.0.4" @@ -33,7 +33,7 @@ mach = "0.3.2" core-foundation = "~0.9" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" futures = "~0.3" version-sync = "0.9" diff --git a/heim-disk/src/lib.rs b/heim-disk/src/lib.rs index 4c913587..34b645af 100644 --- a/heim-disk/src/lib.rs +++ b/heim-disk/src/lib.rs @@ -1,6 +1,6 @@ //! Disks information. -#![doc(html_root_url = "https://docs.rs/heim-disk/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-disk/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-host/Cargo.toml b/heim-host/Cargo.toml index e716acf7..fd0dcbf6 100644 --- a/heim-host/Cargo.toml +++ b/heim-host/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-host" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform host information" @@ -13,14 +13,14 @@ build = "build.rs" [dependencies] log = "~0.4" -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" platforms = "~1.0" libc = "~0.2" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } futures = "~0.3" smol = "~1.2" version-sync = "0.9" diff --git a/heim-host/src/lib.rs b/heim-host/src/lib.rs index 6d3ee314..7717a916 100644 --- a/heim-host/src/lib.rs +++ b/heim-host/src/lib.rs @@ -1,6 +1,6 @@ //! Host system information. -#![doc(html_root_url = "https://docs.rs/heim-host/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-host/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-memory/Cargo.toml b/heim-memory/Cargo.toml index 6b34896d..d08b532d 100644 --- a/heim-memory/Cargo.toml +++ b/heim-memory/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-memory" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform memory information" @@ -11,8 +11,8 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" [target.'cfg(target_os = "windows")'.dependencies] @@ -25,7 +25,7 @@ mach = "0.3.2" lazy_static = "1.3.0" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" version-sync = "0.9" diff --git a/heim-memory/src/lib.rs b/heim-memory/src/lib.rs index 53995a40..22627e3e 100644 --- a/heim-memory/src/lib.rs +++ b/heim-memory/src/lib.rs @@ -1,6 +1,6 @@ //! Memory and swap information. -#![doc(html_root_url = "https://docs.rs/heim-memory/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-memory/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-net/Cargo.toml b/heim-net/Cargo.toml index be7b633c..6150d1b3 100644 --- a/heim-net/Cargo.toml +++ b/heim-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-net" -version = "0.1.0-beta.2" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform network information" @@ -11,8 +11,8 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" bitflags = "^1.0" macaddr = "1.0" @@ -22,7 +22,7 @@ libc = "~0.2" nix = "~0.19" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" futures = "~0.3" version-sync = "0.9" diff --git a/heim-net/src/lib.rs b/heim-net/src/lib.rs index 4aaf8137..24362627 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.2")] +#![doc(html_root_url = "https://docs.rs/heim-net/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-process/Cargo.toml b/heim-process/Cargo.toml index d54fa4d1..82f540b1 100644 --- a/heim-process/Cargo.toml +++ b/heim-process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-process" -version = "0.1.1-beta.3" +version = "0.1.1-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform processes information" @@ -15,9 +15,9 @@ maintenance = { status = "actively-developed" } 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.3", path = "../heim-cpu" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } +heim-cpu = { version = "0.1.0-rc.1", path = "../heim-cpu" } cfg-if = "~1.0" libc = "~0.2" lazy_static = "1.3.0" @@ -29,12 +29,12 @@ async-trait = "~0.1" futures = { version = "~0.3", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] -heim-net = { version = "0.1.0-beta.2", path = "../heim-net" } -heim-host = { version = "0.1.0-beta.1", path = "../heim-host" } +heim-net = { version = "0.1.0-rc.1", path = "../heim-net" } +heim-host = { version = "0.1.0-rc.1", path = "../heim-host" } smol = "~1.2" [target.'cfg(target_os = "windows")'.dependencies] -heim-host = { version = "0.1.0-beta.1", path = "../heim-host" } +heim-host = { version = "0.1.0-rc.1", path = "../heim-host" } ntapi = "0.3.3" [target.'cfg(target_os = "windows")'.dependencies.winapi] @@ -57,7 +57,7 @@ mach = "0.3.2" darwin-libproc = "0.2.0" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" futures = { version = "~0.3", default-features = false } futures-timer = "^3.0" diff --git a/heim-process/src/lib.rs b/heim-process/src/lib.rs index 3dcb050d..7308299e 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.3")] +#![doc(html_root_url = "https://docs.rs/heim-process/0.1.1-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-runtime/Cargo.toml b/heim-runtime/Cargo.toml index 22eec34a..19a83963 100644 --- a/heim-runtime/Cargo.toml +++ b/heim-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-runtime" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Runtime shims for heim crate" diff --git a/heim-runtime/src/lib.rs b/heim-runtime/src/lib.rs index ee106dac..6851c763 100644 --- a/heim-runtime/src/lib.rs +++ b/heim-runtime/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/heim-runtime/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-runtime/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-sensors/Cargo.toml b/heim-sensors/Cargo.toml index 008b6a0b..ad4af0e8 100644 --- a/heim-sensors/Cargo.toml +++ b/heim-sensors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-sensors" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform sensors information" @@ -11,12 +11,12 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" version-sync = "0.9" diff --git a/heim-sensors/src/lib.rs b/heim-sensors/src/lib.rs index 4a37a00c..fc507e86 100644 --- a/heim-sensors/src/lib.rs +++ b/heim-sensors/src/lib.rs @@ -1,6 +1,6 @@ //! Sensors information. -#![doc(html_root_url = "https://docs.rs/heim-sensors/0.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-sensors/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim-virt/Cargo.toml b/heim-virt/Cargo.toml index 296aac23..dc46af0d 100644 --- a/heim-virt/Cargo.toml +++ b/heim-virt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-virt" -version = "0.1.0-beta.1" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform virtualization system detection" @@ -11,8 +11,8 @@ readme = "README.md" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.1.0-beta.1", path = "../heim-common" } -heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } cfg-if = "~1.0" futures = { version = "~0.3", default-features = false, features = ["std", "async-await"] } @@ -20,7 +20,7 @@ futures = { version = "~0.3", default-features = false, features = ["std", "asyn raw-cpuid = "~8.1" [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" tempfile = "3.0" version-sync = "0.9" diff --git a/heim-virt/src/lib.rs b/heim-virt/src/lib.rs index 54227abf..147f34c9 100644 --- a/heim-virt/src/lib.rs +++ b/heim-virt/src/lib.rs @@ -6,7 +6,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.1.0-beta.1")] +#![doc(html_root_url = "https://docs.rs/heim-virt/0.1.0-rc.1")] #![deny( unused, unused_imports, diff --git a/heim/Cargo.toml b/heim/Cargo.toml index 9bf94771..3ab3385c 100644 --- a/heim/Cargo.toml +++ b/heim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim" -version = "0.1.0-beta.3" +version = "0.1.0-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform framework for system information" @@ -17,19 +17,19 @@ is-it-maintained-issue-resolution = { repository = "heim-rs/heim" } 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.3", 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.2", path = "../heim-net", optional = true } -heim-process = { version = "0.1.1-beta.3", 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 } +heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } +heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } +heim-cpu = {version = "0.1.0-rc.1", path = "../heim-cpu", optional = true } +heim-disk = {version = "0.1.0-rc.1", path = "../heim-disk", optional = true } +heim-host = { version = "0.1.0-rc.1", path = "../heim-host", optional = true } +heim-memory = {version = "0.1.0-rc.1", path = "../heim-memory", optional = true } +heim-net = {version = "0.1.0-rc.1", path = "../heim-net", optional = true } +heim-process = { version = "0.1.1-rc.1", path = "../heim-process", optional = true } +heim-virt = { version = "0.1.0-rc.1", path = "../heim-virt", optional = true } +heim-sensors = { version = "0.1.0-rc.1", path = "../heim-sensors", optional = true } [dev-dependencies] -heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" } +heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } version-sync = "0.9" [features] diff --git a/heim/src/lib.rs b/heim/src/lib.rs index 4c96df04..b6b28e23 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.3")] +#![doc(html_root_url = "https://docs.rs/heim/0.1.0-rc.1")] #![deny( unused, unused_imports,