Skip to content

Commit

Permalink
Release v0.1.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Dec 15, 2020
1 parent 26ba276 commit c111eb4
Show file tree
Hide file tree
Showing 24 changed files with 63 additions and 63 deletions.
2 changes: 1 addition & 1 deletion heim-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-common"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Common stuff shared across heim project crates"
Expand Down
2 changes: 1 addition & 1 deletion heim-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-cpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-cpu"
version = "0.1.0-beta.3"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform CPU information"
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion heim-cpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-derive"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Derive macros for heim crates"
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-disk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-disk"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform disk information"
Expand All @@ -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"

Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion heim-disk/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-host"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform host information"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion heim-host/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-memory"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform memory information"
Expand All @@ -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]
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion heim-memory/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-net"
version = "0.1.0-beta.2"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform network information"
Expand All @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion heim-net/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
16 changes: 8 additions & 8 deletions heim-process/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-process"
version = "0.1.1-beta.3"
version = "0.1.1-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform processes information"
Expand All @@ -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"
Expand All @@ -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]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion heim-process/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion heim-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-runtime"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Runtime shims for heim crate"
Expand Down
2 changes: 1 addition & 1 deletion heim-runtime/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-sensors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-sensors"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform sensors information"
Expand All @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion heim-sensors/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
8 changes: 4 additions & 4 deletions heim-virt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-virt"
version = "0.1.0-beta.1"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform virtualization system detection"
Expand All @@ -11,16 +11,16 @@ 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"] }

[target.'cfg(all(target_os = "linux", any(target_arch="x86", target_arch="x86_64")))'.dependencies]
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"
Expand Down
2 changes: 1 addition & 1 deletion heim-virt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
24 changes: 12 additions & 12 deletions heim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim"
version = "0.1.0-beta.3"
version = "0.1.0-rc.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform framework for system information"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion heim/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c111eb4

Please sign in to comment.