Skip to content

Commit 021d659

Browse files
author
Michael-F-Bryan
committed
(cargo-release) version {{version}}
1 parent c26088b commit 021d659

File tree

16 files changed

+59
-56
lines changed

16 files changed

+59
-56
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased] - ReleaseDate
1111

12+
## [0.9.0] - 2021-10-10
13+
1214
### Added
1315

1416
- 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
223225
## [0.2.1] - 2021-03-21
224226

225227
<!-- next-url -->
226-
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...HEAD
228+
[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.9.0...HEAD
229+
[0.9.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.8.0...hotg-rune-cli-v0.9.0
227230
[0.8.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.7.0...hotg-rune-cli-v0.8.0
228231
[0.7.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.6.0...hotg-rune-cli-v0.7.0
229232
[0.6.0]: https://github.com/assert-rs/predicates-rs/compare/hotg-rune-cli-v0.5.3...hotg-rune-cli-v0.6.0

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/native/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-native"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
publish = false
66
authors = ["The Rune Developers <[email protected]>"]
@@ -16,11 +16,11 @@ anyhow = "1.0"
1616
build-info = "0.0.24"
1717
log = "0.4.14"
1818
paste = "1.0"
19-
hotg-rune-core = { path = "../../crates/rune-core", version = "^0.8.0" }
20-
hotg-rune-runtime = { path = "../../crates/runtime", version = "^0.8.0"}
21-
hotg-rune-wasmer-runtime = { path = "../../crates/wasmer-runtime", version = "^0.8.0", optional = true }
22-
hotg-rune-wasm3-runtime = { path = "../../crates/wasm3-runtime", version = "^0.8.0", optional = true }
23-
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.8.0", default-features = false }
19+
hotg-rune-core = { path = "../../crates/rune-core", version = "^0.9.0"}
20+
hotg-rune-runtime = { path = "../../crates/runtime", version = "^0.9.0"}
21+
hotg-rune-wasmer-runtime = { path = "../../crates/wasmer-runtime", version = "^0.9.0", optional = true }
22+
hotg-rune-wasm3-runtime = { path = "../../crates/wasm3-runtime", version = "^0.9.0", optional = true }
23+
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.9.0", default-features = false }
2424
safer-ffi = { version = "0.0.6", features = ["proc_macros"] }
2525

2626
[build-dependencies]

bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rune_py"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
authors = ["The Rune Developers <[email protected]>"]
55
edition = "2018"
66
publish = false

crates/compiler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-compiler"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["The Rune Developers <[email protected]>"]
55
edition = "2018"
66
description = "Runefile parsing and analysis."
@@ -19,8 +19,8 @@ cargo_toml = "0.10.0"
1919
codespan = { version = "0.11.0", features = ["serialization"] }
2020
codespan-reporting = "0.11.0"
2121
heck = "0.3.3"
22-
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
23-
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "0.8.0", default-features = false }
22+
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
23+
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.9.0", default-features = false }
2424
indexmap = { version = "1.6.2", features = ["serde-1"] }
2525
legion = { version = "0.4.0", default-features = false, features = ["serialize", "codegen", "extended-tuple-impls"] }
2626
log = "0.4.14"

crates/proc-block-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-proc-block-macros"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The Rune Developers <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -19,12 +19,12 @@ proc-macro = true
1919
[dependencies]
2020
proc-macro2 = "1.0.27"
2121
quote = "1.0.9"
22-
hotg-rune-core = { path = "../rune-core", version = "^0.8.0", default-features = false }
22+
hotg-rune-core = { path = "../rune-core", version = "^0.9.0", default-features = false }
2323
serde = { version = "1.0.126", features = ["derive"] }
2424
serde_json = "1.0.64"
2525
syn = { version = "1.0.72", features = ["extra-traits", "full"] }
2626

2727
[dev-dependencies]
2828
difference = "2.0.0"
29-
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.8.0" }
29+
hotg-rune-proc-blocks = { path = "../proc-blocks", version = "^0.9.0"}
3030
pretty_assertions = "1.0.0"

crates/proc-blocks/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-proc-blocks"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The Rune Developers <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -14,8 +14,8 @@ readme = "README.md"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

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

2121
[dev-dependencies]

crates/rune-cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-cli"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The Rune Developers <[email protected]>"]
66
description = "A self-sufficient runtime for TinyML Containers."
@@ -18,13 +18,13 @@ chrono = { version = "0.4.19", features = ["std"] }
1818
codespan-reporting = "0.11.0"
1919
dirs = "4"
2020
env_logger = "0.9"
21-
hotg-rune-core = { path = "../rune-core", version = "^0.8.0" }
22-
hotg-rune-runtime = { path = "../runtime", version = "^0.8.0" }
23-
hotg-rune-compiler = { path = "../compiler", version = "^0.8.0" }
24-
hotg-rune-wasm3-runtime = { path = "../wasm3-runtime", version = "^0.8.0" }
25-
hotg-rune-wasmer-runtime = { path = "../wasmer-runtime", version = "^0.8.0" }
21+
hotg-rune-core = { path = "../rune-core", version = "^0.9.0"}
22+
hotg-rune-runtime = { path = "../runtime", version = "^0.9.0"}
23+
hotg-rune-compiler = { path = "../compiler", version = "^0.9.0"}
24+
hotg-rune-wasm3-runtime = { path = "../wasm3-runtime", version = "^0.9.0"}
25+
hotg-rune-wasmer-runtime = { path = "../wasmer-runtime", version = "^0.9.0"}
2626
hotg-runecoral = "0.3.4"
27-
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.8.0", features = ["wasm3-runtime"] }
27+
hotg-runicos-base-runtime = { path = "../../images/runicos-base/runtime", version = "^0.9.0", features = ["wasm3-runtime"] }
2828
hound = "3.4.0"
2929
human-panic = "1.0.3"
3030
image = "0.23.14"

crates/rune-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-core"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "Core abstractions and types used across the Rune platform."
55
edition = "2018"
66
authors = ["The Rune Developers <[email protected]>"]

crates/runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotg-rune-runtime"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2018"
55
authors = ["The Rune Developers <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ hound = { version = "3.4.0", optional = true }
1919
image = { version = "0.23.14", optional = true }
2020
log = "0.4.14"
2121
rand = { version = "0.8.3", optional = true }
22-
hotg-rune-core = { path = "../rune-core", version = "^0.8.0", features = ["std"] }
22+
hotg-rune-core = { path = "../rune-core", version = "^0.9.0", features = ["std"] }
2323
thiserror = "1.0.24"
2424

2525
[features]

0 commit comments

Comments
 (0)