Skip to content

Commit c111eb4

Browse files
committed
Release v0.1.0-rc.1
1 parent 26ba276 commit c111eb4

File tree

24 files changed

+63
-63
lines changed

24 files changed

+63
-63
lines changed

heim-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heim-common"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0-rc.1"
44
authors = ["svartalf <[email protected]>"]
55
edition = "2018"
66
description = "Common stuff shared across heim project crates"

heim-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Do **NOT** use it directly.
44
5-
#![doc(html_root_url = "https://docs.rs/heim-common/0.1.0-beta.1")]
5+
#![doc(html_root_url = "https://docs.rs/heim-common/0.1.0-rc.1")]
66
#![deny(
77
unused,
88
unused_imports,

heim-cpu/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heim-cpu"
3-
version = "0.1.0-beta.3"
3+
version = "0.1.0-rc.1"
44
authors = ["svartalf <[email protected]>"]
55
edition = "2018"
66
description = "Cross-platform CPU information"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
license = "Apache-2.0 OR MIT"
1212

1313
[dependencies]
14-
heim-common = { version = "0.1.0-beta.1", path = "../heim-common" }
15-
heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" }
14+
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
15+
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
1616
futures = { version = "~0.3", default-features = false, features = ["std"] }
1717
lazy_static = "1.3.0"
1818
cfg-if = "~1.0"
@@ -43,7 +43,7 @@ libc = "~ 0.2"
4343
mach = "0.3.2"
4444

4545
[dev-dependencies]
46-
heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" }
46+
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
4747
smol = "~1.2"
4848
futures = "~0.3"
4949
version-sync = "0.9"

heim-cpu/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! [`os::unix::loadavg`]: ./os/unix/fn.loadavg.html
88
9-
#![doc(html_root_url = "https://docs.rs/heim-cpu/0.1.0-beta.3")]
9+
#![doc(html_root_url = "https://docs.rs/heim-cpu/0.1.0-rc.1")]
1010
#![deny(
1111
unused,
1212
unused_imports,

heim-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heim-derive"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0-rc.1"
44
authors = ["svartalf <[email protected]>"]
55
edition = "2018"
66
description = "Derive macros for heim crates"

heim-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Do not use directly.
44
5-
#![doc(html_root_url = "https://docs.rs/heim-derive/0.1.0-beta.1")]
5+
#![doc(html_root_url = "https://docs.rs/heim-derive/0.1.0-rc.1")]
66
#![recursion_limit = "128"]
77
#![deny(
88
unused,

heim-disk/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heim-disk"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0-rc.1"
44
authors = ["svartalf <[email protected]>"]
55
edition = "2018"
66
description = "Cross-platform disk information"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
license = "Apache-2.0 OR MIT"
1212

1313
[dependencies]
14-
heim-common = { version = "0.1.0-beta.1", path = "../heim-common" }
15-
heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" }
14+
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
15+
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
1616
cfg-if = "~1.0"
1717
bitflags = "1.0.4"
1818

@@ -33,7 +33,7 @@ mach = "0.3.2"
3333
core-foundation = "~0.9"
3434

3535
[dev-dependencies]
36-
heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" }
36+
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
3737
smol = "~1.2"
3838
futures = "~0.3"
3939
version-sync = "0.9"

heim-disk/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Disks information.
22
3-
#![doc(html_root_url = "https://docs.rs/heim-disk/0.1.0-beta.1")]
3+
#![doc(html_root_url = "https://docs.rs/heim-disk/0.1.0-rc.1")]
44
#![deny(
55
unused,
66
unused_imports,

heim-host/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "heim-host"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0-rc.1"
44
authors = ["svartalf <[email protected]>"]
55
edition = "2018"
66
description = "Cross-platform host information"
@@ -13,14 +13,14 @@ build = "build.rs"
1313

1414
[dependencies]
1515
log = "~0.4"
16-
heim-common = { version = "0.1.0-beta.1", path = "../heim-common" }
17-
heim-runtime = { version = "0.1.0-beta.1", path = "../heim-runtime" }
16+
heim-common = { version = "0.1.0-rc.1", path = "../heim-common" }
17+
heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" }
1818
cfg-if = "~1.0"
1919
platforms = "~1.0"
2020
libc = "~0.2"
2121

2222
[dev-dependencies]
23-
heim-derive = { version = "0.1.0-beta.1", path = "../heim-derive" }
23+
heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" }
2424
futures = "~0.3"
2525
smol = "~1.2"
2626
version-sync = "0.9"

heim-host/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Host system information.
22
3-
#![doc(html_root_url = "https://docs.rs/heim-host/0.1.0-beta.1")]
3+
#![doc(html_root_url = "https://docs.rs/heim-host/0.1.0-rc.1")]
44
#![deny(
55
unused,
66
unused_imports,

0 commit comments

Comments
 (0)