Skip to content

Commit

Permalink
(cargo-release) version {{version}}
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed Oct 10, 2021
1 parent c26088b commit 021d659
Show file tree
Hide file tree
Showing 16 changed files with 59 additions and 56 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.9.0] - 2021-10-10

### Added

- The Rune repository now contains a JSON schema that can be used to provide
Expand Down Expand Up @@ -223,7 +225,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.2.1] - 2021-03-21

<!-- next-url -->
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...HEAD
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.9.0...HEAD
[0.9.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...hotg-rune-cli-v0.9.0
[0.8.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.7.0...hotg-rune-cli-v0.8.0
[0.7.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.6.0...hotg-rune-cli-v0.7.0
[0.6.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.5.3...hotg-rune-cli-v0.6.0
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions bindings/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-native"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
publish = false
authors = ["The Rune Developers <developers@hotg.ai>"]
Expand All @@ -16,11 +16,11 @@ anyhow = "1.0"
build-info = "0.0.24"
log = "0.4.14"
paste = "1.0"
hotg-rune-core = { path = "../../crates/rune-core", version = "^0.8.0" }
hotg-rune-runtime = { path = "../../crates/runtime", version = "^0.8.0"}
hotg-rune-wasmer-runtime = { path = "../../crates/wasmer-runtime", version = "^0.8.0", optional = true }
hotg-rune-wasm3-runtime = { path = "../../crates/wasm3-runtime", version = "^0.8.0", optional = true }
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.8.0", default-features = false }
hotg-rune-core = { path = "../../crates/rune-core", version = "^0.9.0"}
hotg-rune-runtime = { path = "../../crates/runtime", version = "^0.9.0"}
hotg-rune-wasmer-runtime = { path = "../../crates/wasmer-runtime", version = "^0.9.0", optional = true }
hotg-rune-wasm3-runtime = { path = "../../crates/wasm3-runtime", version = "^0.9.0", optional = true }
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.9.0", default-features = false }
safer-ffi = { version = "0.0.6", features = ["proc_macros"] }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rune_py"
version = "0.0.0"
version = "0.1.0"
authors = ["The Rune Developers <developers@hotg.ai>"]
edition = "2018"
publish = false
Expand Down
6 changes: 3 additions & 3 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-compiler"
version = "0.8.0"
version = "0.9.0"
authors = ["The Rune Developers <developers@hotg.ai>"]
edition = "2018"
description = "Runefile parsing and analysis."
Expand All @@ -19,8 +19,8 @@ cargo_toml = "0.10.0"
codespan = { version = "0.11.0", features = ["serialization"] }
codespan-reporting = "0.11.0"
heck = "0.3.3"
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "0.8.0", default-features = false }
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.9.0", default-features = false }
indexmap = { version = "1.6.2", features = ["serde-1"] }
legion = { version = "0.4.0", default-features = false, features = ["serialize", "codegen", "extended-tuple-impls"] }
log = "0.4.14"
Expand Down
6 changes: 3 additions & 3 deletions crates/proc-block-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-proc-block-macros"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,12 +19,12 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.27"
quote = "1.0.9"
hotg-rune-core = { path = "../rune-core", version = "^0.8.0", default-features = false }
hotg-rune-core = { path = "../rune-core", version = "^0.9.0", default-features = false }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
syn = { version = "1.0.72", features = ["extra-traits", "full"] }

[dev-dependencies]
difference = "2.0.0"
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.8.0" }
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.9.0"}
pretty_assertions = "1.0.0"
6 changes: 3 additions & 3 deletions crates/proc-blocks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-proc-blocks"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hotg-rune-proc-block-macros = { path = "../proc-block-macros", version = "^0.8.0", optional = true }
hotg-rune-core = { path = "../rune-core", version = "^0.8.0", default-features = false }
hotg-rune-proc-block-macros = { path = "../proc-block-macros", version = "^0.9.0", optional = true }
hotg-rune-core = { path = "../rune-core", version = "^0.9.0", default-features = false }
serde = { version = "1.0.126", default-features = false, features = ["derive", "alloc"] }

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions crates/rune-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-cli"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
description = "A self-sufficient runtime for TinyML Containers."
Expand All @@ -18,13 +18,13 @@ chrono = { version = "0.4.19", features = ["std"] }
codespan-reporting = "0.11.0"
dirs = "4"
env_logger = "0.9"
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
hotg-rune-runtime = { path = "../runtime", version = "^0.8.0" }
hotg-rune-compiler = { path = "../compiler", version = "^0.8.0" }
hotg-rune-wasm3-runtime = { path = "../wasm3-runtime", version = "^0.8.0" }
hotg-rune-wasmer-runtime = { path = "../wasmer-runtime", version = "^0.8.0" }
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
hotg-rune-runtime = { path = "../runtime", version = "^0.9.0"}
hotg-rune-compiler = { path = "../compiler", version = "^0.9.0"}
hotg-rune-wasm3-runtime = { path = "../wasm3-runtime", version = "^0.9.0"}
hotg-rune-wasmer-runtime = { path = "../wasmer-runtime", version = "^0.9.0"}
hotg-runecoral = "0.3.4"
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.8.0", features = ["wasm3-runtime"] }
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.9.0", features = ["wasm3-runtime"] }
hound = "3.4.0"
human-panic = "1.0.3"
image = "0.23.14"
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-core"
version = "0.8.0"
version = "0.9.0"
description = "Core abstractions and types used across the Rune platform."
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
Expand Down
4 changes: 2 additions & 2 deletions crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-runtime"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ hound = { version = "3.4.0", optional = true }
image = { version = "0.23.14", optional = true }
log = "0.4.14"
rand = { version = "0.8.3", optional = true }
hotg-rune-core = { path = "../rune-core", version = "^0.8.0", features = ["std"] }
hotg-rune-core = { path = "../rune-core", version = "^0.9.0", features = ["std"] }
thiserror = "1.0.24"

[features]
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm3-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-wasm3-runtime"
version = "0.8.0"
version = "0.9.0"
authors = ["The Rune Developers <developers@hotg.ai>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ readme = "README.md"
[dependencies]
anyhow = "1.0"
log = "0.4.14"
hotg-rune-runtime = { path = "../runtime", version = "^0.8.0"}
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
hotg-rune-runtime = { path = "../runtime", version = "^0.9.0"}
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
wasm3 = { version = "0.3.1", features = ["build-bindgen"]}

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/wasmer-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-wasmer-runtime"
version = "0.8.0"
version = "0.9.0"
authors = ["The Rune Developers <developers@hotg.ai>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ readme = "README.md"
[dependencies]
anyhow = "1.0.40"
log = "0.4.14"
hotg-rune-runtime = { path = "../runtime", version = "^0.8.0" }
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
hotg-rune-runtime = { path = "../runtime", version = "^0.9.0"}
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
wasmer = "2.0"
wasmer-types = "2.0"
wasmer-vm = "2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.0.0"
version = "0.1.0"
authors = ["The Rune Developers <developers@hotg.ai>"]
edition = "2018"
publish = false
Expand Down
10 changes: 5 additions & 5 deletions images/runicos-base/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-runicos-base-runtime"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,10 +15,10 @@ readme = "README.md"

[dependencies]
anyhow = "1.0.40"
hotg-rune-core = { path = "../../../crates/rune-core", version = "^0.8.0", features = ["std"] }
hotg-rune-runtime = { path = "../../../crates/runtime", version = "^0.8.0", features = ["builtins"] }
hotg-rune-wasmer-runtime = { path = "../../../crates/wasmer-runtime", version = "^0.8.0", optional = true }
hotg-rune-wasm3-runtime = { path = "../../../crates/wasm3-runtime", version = "^0.8.0", optional = true }
hotg-rune-core = { path = "../../../crates/rune-core", version = "^0.9.0", features = ["std"] }
hotg-rune-runtime = { path = "../../../crates/runtime", version = "^0.9.0", features = ["builtins"] }
hotg-rune-wasmer-runtime = { path = "../../../crates/wasmer-runtime", version = "^0.9.0", optional = true }
hotg-rune-wasm3-runtime = { path = "../../../crates/wasm3-runtime", version = "^0.9.0", optional = true }
hotg-runecoral = "0.3.4"
log = "0.4.14"
rand = "0.8.4"
Expand Down
4 changes: 2 additions & 2 deletions images/runicos-base/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-runicos-base-wasm"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The Rune Developers <developers@hotg.ai>"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ readme = "README.md"
[target.wasm32-unknown-unknown.dependencies]
dlmalloc = { version = "0.2.1", features = ["global"] }
log = "0.4.14"
hotg-rune-core = { path = "../../../crates/rune-core", version = "^0.8.0" }
hotg-rune-core = { path = "../../../crates/rune-core", version = "^0.9.0"}
serde = { version = "1.0.126", default-features = false }
serde-json-core = { version = "0.4.0", default-features = false }
serde_json = { version = "1.0.64", features = ["alloc"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotg-rune-integration-tests"
version = "0.0.0"
version = "0.1.0"
edition = "2018"
publish = false

Expand Down

0 comments on commit 021d659

Please sign in to comment.