From 021d6593aa526d45c34f52d76ae40a87f56f517c Mon Sep 17 00:00:00 2001 From: Michael-F-Bryan Date: Sun, 10 Oct 2021 22:10:51 +0800 Subject: [PATCH] (cargo-release) version {{version}} --- CHANGELOG.md | 5 ++++- Cargo.lock | 28 +++++++++++++------------- bindings/native/Cargo.toml | 12 +++++------ bindings/python/Cargo.toml | 2 +- crates/compiler/Cargo.toml | 6 +++--- crates/proc-block-macros/Cargo.toml | 6 +++--- crates/proc-blocks/Cargo.toml | 6 +++--- crates/rune-cli/Cargo.toml | 14 ++++++------- crates/rune-core/Cargo.toml | 2 +- crates/runtime/Cargo.toml | 4 ++-- crates/wasm3-runtime/Cargo.toml | 6 +++--- crates/wasmer-runtime/Cargo.toml | 6 +++--- crates/xtask/Cargo.toml | 2 +- images/runicos-base/runtime/Cargo.toml | 10 ++++----- images/runicos-base/wasm/Cargo.toml | 4 ++-- integration-tests/Cargo.toml | 2 +- 16 files changed, 59 insertions(+), 56 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e10b27f02..1fce89aa84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -223,7 +225,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.2.1] - 2021-03-21 -[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 diff --git a/Cargo.lock b/Cargo.lock index 3ee97415b0..d79badf12f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1042,7 +1042,7 @@ dependencies = [ [[package]] name = "hotg-rune-cli" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "assert_cmd", @@ -1082,7 +1082,7 @@ dependencies = [ [[package]] name = "hotg-rune-compiler" -version = "0.8.0" +version = "0.9.0" dependencies = [ "atomic_refcell", "cargo_toml", @@ -1110,7 +1110,7 @@ dependencies = [ [[package]] name = "hotg-rune-core" -version = "0.8.0" +version = "0.9.0" dependencies = [ "log", "serde", @@ -1118,7 +1118,7 @@ dependencies = [ [[package]] name = "hotg-rune-integration-tests" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "env_logger 0.9.0", @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "hotg-rune-native" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "build-info", @@ -1148,7 +1148,7 @@ dependencies = [ [[package]] name = "hotg-rune-proc-block-macros" -version = "0.8.0" +version = "0.9.0" dependencies = [ "difference", "hotg-rune-core", @@ -1163,7 +1163,7 @@ dependencies = [ [[package]] name = "hotg-rune-proc-blocks" -version = "0.8.0" +version = "0.9.0" dependencies = [ "difference", "hotg-rune-core", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "hotg-rune-runtime" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "hotg-rune-core", @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "hotg-rune-wasm3-runtime" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "hotg-rune-core", @@ -1199,7 +1199,7 @@ dependencies = [ [[package]] name = "hotg-rune-wasmer-runtime" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "hotg-rune-core", @@ -1225,7 +1225,7 @@ dependencies = [ [[package]] name = "hotg-runicos-base-runtime" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "hotg-rune-core", @@ -1244,7 +1244,7 @@ dependencies = [ [[package]] name = "hotg-runicos-base-wasm" -version = "0.8.0" +version = "0.9.0" dependencies = [ "dlmalloc", "hotg-rune-core", @@ -2424,7 +2424,7 @@ dependencies = [ [[package]] name = "rune_py" -version = "0.0.0" +version = "0.1.0" dependencies = [ "numpy", "pyo3", @@ -3402,7 +3402,7 @@ checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" [[package]] name = "xtask" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "cargo_toml", diff --git a/bindings/native/Cargo.toml b/bindings/native/Cargo.toml index 6430d4df29..f9afdeb551 100644 --- a/bindings/native/Cargo.toml +++ b/bindings/native/Cargo.toml @@ -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 "] @@ -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] diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 5036571a66..f36840efeb 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rune_py" -version = "0.0.0" +version = "0.1.0" authors = ["The Rune Developers "] edition = "2018" publish = false diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index dfaba7248c..227938b47f 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-compiler" -version = "0.8.0" +version = "0.9.0" authors = ["The Rune Developers "] edition = "2018" description = "Runefile parsing and analysis." @@ -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" diff --git a/crates/proc-block-macros/Cargo.toml b/crates/proc-block-macros/Cargo.toml index a61c7ba897..11bc756a83 100644 --- a/crates/proc-block-macros/Cargo.toml +++ b/crates/proc-block-macros/Cargo.toml @@ -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 "] license = "MIT OR Apache-2.0" @@ -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" diff --git a/crates/proc-blocks/Cargo.toml b/crates/proc-blocks/Cargo.toml index 1347b2f831..2a9fb146d0 100644 --- a/crates/proc-blocks/Cargo.toml +++ b/crates/proc-blocks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-proc-blocks" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["The Rune Developers "] license = "MIT OR Apache-2.0" @@ -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] diff --git a/crates/rune-cli/Cargo.toml b/crates/rune-cli/Cargo.toml index cc97f7f478..4d5aa54591 100644 --- a/crates/rune-cli/Cargo.toml +++ b/crates/rune-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-cli" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["The Rune Developers "] description = "A self-sufficient runtime for TinyML Containers." @@ -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" diff --git a/crates/rune-core/Cargo.toml b/crates/rune-core/Cargo.toml index 1cadffa643..9581e12c17 100644 --- a/crates/rune-core/Cargo.toml +++ b/crates/rune-core/Cargo.toml @@ -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 "] diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml index 4566942dc3..3e92e76e28 100644 --- a/crates/runtime/Cargo.toml +++ b/crates/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-runtime" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["The Rune Developers "] license = "MIT OR Apache-2.0" @@ -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] diff --git a/crates/wasm3-runtime/Cargo.toml b/crates/wasm3-runtime/Cargo.toml index 2e8c90574d..9762b162cc 100644 --- a/crates/wasm3-runtime/Cargo.toml +++ b/crates/wasm3-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-wasm3-runtime" -version = "0.8.0" +version = "0.9.0" authors = ["The Rune Developers "] edition = "2018" license = "MIT OR Apache-2.0" @@ -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] diff --git a/crates/wasmer-runtime/Cargo.toml b/crates/wasmer-runtime/Cargo.toml index dc0a391c43..68563978f2 100644 --- a/crates/wasmer-runtime/Cargo.toml +++ b/crates/wasmer-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-wasmer-runtime" -version = "0.8.0" +version = "0.9.0" authors = ["The Rune Developers "] edition = "2018" license = "MIT OR Apache-2.0" @@ -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" diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index ce0a62e080..263cdeaddb 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.0.0" +version = "0.1.0" authors = ["The Rune Developers "] edition = "2018" publish = false diff --git a/images/runicos-base/runtime/Cargo.toml b/images/runicos-base/runtime/Cargo.toml index 2cdd99a088..fe1a0eb900 100644 --- a/images/runicos-base/runtime/Cargo.toml +++ b/images/runicos-base/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-runicos-base-runtime" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["The Rune Developers "] license = "MIT OR Apache-2.0" @@ -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" diff --git a/images/runicos-base/wasm/Cargo.toml b/images/runicos-base/wasm/Cargo.toml index 510a4d7f48..a58c24988a 100644 --- a/images/runicos-base/wasm/Cargo.toml +++ b/images/runicos-base/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-runicos-base-wasm" -version = "0.8.0" +version = "0.9.0" edition = "2018" authors = ["The Rune Developers "] license = "MIT OR Apache-2.0" @@ -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 } diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 614f09a594..706260dac1 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotg-rune-integration-tests" -version = "0.0.0" +version = "0.1.0" edition = "2018" publish = false