Skip to content

Commit

Permalink
Release v0.8.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Sep 24, 2019
1 parent 5d8fb6b commit e84c508
Show file tree
Hide file tree
Showing 39 changed files with 303 additions and 76 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `process::Process::terminate` method (#162, #163)
- `process::Process::suspend` method (#164, #165)
- `process::Process::resume` method (#164, #166)
- `APFS` support for `heim::disk::FileSystem` (#171)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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.7/status.svg)](https://deps.rs/crate/heim/0.0.7)
[![dependency status](https://deps.rs/crate/heim/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim/0.0.8-alpha.1)
[![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)
[![Coverage Status](https://coveralls.io/repos/github/heim-rs/heim/badge.svg?branch=master)](https://coveralls.io/github/heim-rs/heim?branch=master)
![Minimum rustc version](https://img.shields.io/badge/rustc-1.36+-green.svg)
Expand Down
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.0.7"
version = "0.0.8-alpha.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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-common/0.0.7)
[![dependency status](https://deps.rs/crate/heim-common/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-common/0.0.8-alpha.1)
[![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)
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.0.7")]
#![doc(html_root_url = "https://docs.rs/heim-common/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform CPU information"
Expand All @@ -15,9 +15,9 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
lazy_static = "1.3.0"
cfg-if = "0.1.7"

Expand Down
2 changes: 1 addition & 1 deletion heim-cpu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-cpu/0.0.7)
[![dependency status](https://deps.rs/crate/heim-cpu/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-cpu/0.0.8-alpha.1)
[![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)
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 @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Derive macros for heim crates"
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-derive/0.0.7)
[![dependency status](https://deps.rs/crate/heim-derive/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-derive/0.0.8-alpha.1)
[![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)
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.0.7")]
#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform disk information"
Expand All @@ -15,9 +15,9 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
cfg-if = "0.1.7"
bitflags = "1.0.4"

Expand Down
2 changes: 1 addition & 1 deletion heim-disk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-disk/0.0.7)
[![dependency status](https://deps.rs/crate/heim-disk/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-disk/0.0.8-alpha.1)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-disk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform host information"
Expand All @@ -16,9 +16,9 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
cfg-if = "0.1.7"
platforms = "0.2.0"
libc = "~0.2"
Expand Down
2 changes: 1 addition & 1 deletion heim-host/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-host/0.0.7)
[![dependency status](https://deps.rs/crate/heim-host/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-host/0.0.8-alpha.1)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-host/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform memory information"
Expand All @@ -15,9 +15,9 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
cfg-if = "0.1.7"

[target.'cfg(target_os = "windows")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion heim-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-memory/0.0.7)
[![dependency status](https://deps.rs/crate/heim-memory/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-memory/0.0.8-alpha.1)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-memory/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform network information"
Expand All @@ -15,9 +15,9 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
cfg-if = "0.1.7"
bitflags = "1.0.4"
macaddr = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion heim-net/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-net/0.0.7)
[![dependency status](https://deps.rs/crate/heim-net/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-net/0.0.8-alpha.1)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-net/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-net/0.0.8-alpha.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.0.7"
version = "0.0.8-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform processes information"
Expand All @@ -15,22 +15,22 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-cpu = { version = "0.0.7", path = "../heim-cpu" }
heim-derive = { version = "0.0.8-alpha.1", path = "../heim-derive" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
heim-runtime = { version = "0.0.4-alpha.1", path = "../heim-runtime" }
heim-cpu = { version = "0.0.8-alpha.1", path = "../heim-cpu" }
cfg-if = "0.1.7"
libc = "~0.2"
lazy_static = "1.3.0"
ordered-float = { version = "~1.0", default-features = false }
memchr = "~2.2"

[target.'cfg(target_os = "linux")'.dependencies]
heim-net = { version = "0.0.7", path = "../heim-net" }
heim-host = { version = "0.0.7", path = "../heim-host" }
heim-net = { version = "0.0.8-alpha.1", path = "../heim-net" }
heim-host = { version = "0.0.8-alpha.1", path = "../heim-host" }

[target.'cfg(target_os = "windows")'.dependencies]
heim-host = { version = "0.0.7", path = "../heim-host" }
heim-host = { version = "0.0.8-alpha.1", path = "../heim-host" }
ntapi = "0.3.3"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
Expand Down
2 changes: 1 addition & 1 deletion heim-process/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/status.svg)](https://deps.rs/crate/heim-process/0.0.7)
[![dependency status](https://deps.rs/crate/heim-process/0.0.8-alpha.1/status.svg)](https://deps.rs/crate/heim-process/0.0.8-alpha.1)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-process/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7")]
#![doc(html_root_url = "https://docs.rs/heim-process/0.0.8-alpha.1")]
#![deny(
unused,
unused_imports,
Expand Down
4 changes: 2 additions & 2 deletions heim-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-runtime"
version = "0.0.3"
version = "0.0.4-alpha.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Runtime shims for heim crate"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/heim-rs/heim"
license = "Apache-2.0 OR MIT"

[dependencies]
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-common = { version = "0.0.8-alpha.1", path = "../heim-common" }
cfg-if = "0.1.9"

# `runtime-polyfill` feature dependencies
Expand Down
Loading

0 comments on commit e84c508

Please sign in to comment.