diff --git a/Cargo.lock b/Cargo.lock index 741ee1ac..a9e027eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "assert_fs", @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.9.2-rc.2" +version = "0.9.2-rc.3" dependencies = [ "anyhow", "assert_fs", @@ -403,7 +403,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.4.1-rc.2" +version = "0.4.1-rc.3" dependencies = [ "anyhow", "crux_core", @@ -413,7 +413,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "crux_core", "crux_http", @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "crux_platform" -version = "0.1.12-rc.2" +version = "0.1.12-rc.3" dependencies = [ "crux_core", "serde", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "crux_time" -version = "0.4.3-rc.2" +version = "0.4.3-rc.3" dependencies = [ "chrono", "crux_core", diff --git a/crux_core/CHANGELOG.md b/crux_core/CHANGELOG.md index 2ef3d5a4..b47b3b3e 100644 --- a/crux_core/CHANGELOG.md +++ b/crux_core/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to ## [Unreleased] -## [0.8.0-rc.2](https://github.com/redbadger/crux/compare/crux_core-v0.7.6...crux_core-v0.8.0-rc.2) - 2024-05-21 +## [0.8.0-rc.3](https://github.com/redbadger/crux/compare/crux_core-v0.7.6...crux_core-v0.8.0-rc.3) - 2024-05-21 Release candidate for 0.8.0 diff --git a/crux_core/Cargo.toml b/crux_core/Cargo.toml index 7b48bccd..5ee2156c 100644 --- a/crux_core/Cargo.toml +++ b/crux_core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_core" description = "Cross-platform app development in Rust" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" readme = "README.md" authors.workspace = true repository.workspace = true @@ -20,7 +20,7 @@ all-features = true anyhow.workspace = true bincode = "1.3.3" crossbeam-channel = "0.5.13" -crux_macros = { version = "0.3.10-rc.2", path = "../crux_macros" } +crux_macros = { version = "0.3.10-rc.3", path = "../crux_macros" } erased-serde = "0.4" futures = "0.3.30" serde = { workspace = true, features = ["derive"] } diff --git a/crux_http/CHANGELOG.md b/crux_http/CHANGELOG.md index 416d311c..9aaf95af 100644 --- a/crux_http/CHANGELOG.md +++ b/crux_http/CHANGELOG.md @@ -8,11 +8,11 @@ and this project adheres to ## [Unreleased] -## [0.9.2-rc.2](https://github.com/redbadger/crux/compare/crux_http-v0.9.1...crux_http-v0.9.2-rc.2) - 2024-05-21 +## [0.9.2-rc.3](https://github.com/redbadger/crux/compare/crux_http-v0.9.1...crux_http-v0.9.2-rc.3) - 2024-05-21 ### Other -- Release crux_core v0.8.0-rc.2 +- Release crux_core v0.8.0-rc.3 ## [0.9.1](https://github.com/redbadger/crux/compare/crux_http-v0.9.0...crux_http-v0.9.1) - 2024-05-14 diff --git a/crux_http/Cargo.toml b/crux_http/Cargo.toml index 1519bdb5..fe4574ae 100644 --- a/crux_http/Cargo.toml +++ b/crux_http/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_http" description = "HTTP capability for use with crux_core" -version = "0.9.2-rc.2" +version = "0.9.2-rc.3" readme = "README.md" authors.workspace = true repository.workspace = true @@ -13,7 +13,7 @@ rust-version.workspace = true [dependencies] anyhow.workspace = true async-trait = "0.1.80" -crux_core = { version = "0.8.0-rc.2", path = "../crux_core" } +crux_core = { version = "0.8.0-rc.3", path = "../crux_core" } derive_builder = "0.20.0" futures-util = "0.3" http-types = { package = "http-types-red-badger-temporary-fork", version = "2.12.0", default-features = false } diff --git a/crux_kv/CHANGELOG.md b/crux_kv/CHANGELOG.md index c5cacebb..4bc8aae9 100644 --- a/crux_kv/CHANGELOG.md +++ b/crux_kv/CHANGELOG.md @@ -8,11 +8,11 @@ and this project adheres to ## [Unreleased] -## [0.4.1-rc.2](https://github.com/redbadger/crux/compare/crux_kv-v0.4.0...crux_kv-v0.4.1-rc.2) - 2024-05-21 +## [0.4.1-rc.3](https://github.com/redbadger/crux/compare/crux_kv-v0.4.0...crux_kv-v0.4.1-rc.3) - 2024-05-21 ### Other -- Release crux_core v0.8.0-rc.2 +- Release crux_core v0.8.0-rc.3 - registry now slab allocated with u32 ## [0.4.0](https://github.com/redbadger/crux/compare/crux_kv-v0.3.0...crux_kv-v0.4.0) - 2024-05-17 diff --git a/crux_kv/Cargo.toml b/crux_kv/Cargo.toml index 8ff97ecf..76a1a354 100644 --- a/crux_kv/Cargo.toml +++ b/crux_kv/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_kv" description = "Key-Value capability for use with crux_core" -version = "0.4.1-rc.2" +version = "0.4.1-rc.3" readme = "README.md" authors.workspace = true repository.workspace = true @@ -12,6 +12,6 @@ rust-version.workspace = true [dependencies] anyhow.workspace = true -crux_core = { version = "0.8.0-rc.2", path = "../crux_core" } +crux_core = { version = "0.8.0-rc.3", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } thiserror = "1.0.61" diff --git a/crux_macros/CHANGELOG.md b/crux_macros/CHANGELOG.md index 90e25b11..ff9b3c5e 100644 --- a/crux_macros/CHANGELOG.md +++ b/crux_macros/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to ## [Unreleased] -## [0.3.10-rc.2](https://github.com/redbadger/crux/compare/crux_macros-v0.3.9...crux_macros-v0.3.10-rc.2) - 2024-05-21 +## [0.3.10-rc.3](https://github.com/redbadger/crux/compare/crux_macros-v0.3.9...crux_macros-v0.3.10-rc.3) - 2024-05-21 ### Other diff --git a/crux_macros/Cargo.toml b/crux_macros/Cargo.toml index 5562c6dc..9c3a75ee 100644 --- a/crux_macros/Cargo.toml +++ b/crux_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_macros" description = "Macros for use with crux_core" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" authors.workspace = true repository.workspace = true edition.workspace = true diff --git a/crux_platform/CHANGELOG.md b/crux_platform/CHANGELOG.md index 20489e00..57042607 100644 --- a/crux_platform/CHANGELOG.md +++ b/crux_platform/CHANGELOG.md @@ -7,11 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.12-rc.2](https://github.com/redbadger/crux/compare/crux_platform-v0.1.11...crux_platform-v0.1.12-rc.2) - 2024-05-21 +## [0.1.12-rc.3](https://github.com/redbadger/crux/compare/crux_platform-v0.1.11...crux_platform-v0.1.12-rc.3) - 2024-05-21 ### Other -- Release crux_core v0.8.0-rc.2 +- Release crux_core v0.8.0-rc.3 ## [0.1.11](https://github.com/redbadger/crux/compare/crux_platform-v0.1.10...crux_platform-v0.1.11) - 2024-05-15 diff --git a/crux_platform/Cargo.toml b/crux_platform/Cargo.toml index e3167ef2..d15d43fa 100644 --- a/crux_platform/Cargo.toml +++ b/crux_platform/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_platform" description = "Platform capability for use with crux_core" -version = "0.1.12-rc.2" +version = "0.1.12-rc.3" readme = "README.md" authors.workspace = true repository.workspace = true @@ -11,5 +11,5 @@ keywords.workspace = true rust-version.workspace = true [dependencies] -crux_core = { version = "0.8.0-rc.2", path = "../crux_core" } +crux_core = { version = "0.8.0-rc.3", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } diff --git a/crux_time/CHANGELOG.md b/crux_time/CHANGELOG.md index 3b2ec7f0..b8d57e7e 100644 --- a/crux_time/CHANGELOG.md +++ b/crux_time/CHANGELOG.md @@ -8,11 +8,11 @@ and this project adheres to ## [Unreleased] -## [0.4.3-rc.2](https://github.com/redbadger/crux/compare/crux_time-v0.4.2...crux_time-v0.4.3-rc.2) - 2024-05-21 +## [0.4.3-rc.3](https://github.com/redbadger/crux/compare/crux_time-v0.4.2...crux_time-v0.4.3-rc.3) - 2024-05-21 ### Other -- Release crux_core v0.8.0-rc.2 +- Release crux_core v0.8.0-rc.3 ## [0.4.2](https://github.com/redbadger/crux/compare/crux_time-v0.4.1...crux_time-v0.4.2) - 2024-05-15 diff --git a/crux_time/Cargo.toml b/crux_time/Cargo.toml index 25673aea..0626fa20 100644 --- a/crux_time/Cargo.toml +++ b/crux_time/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crux_time" description = "Time capability for use with crux_core" -version = "0.4.3-rc.2" +version = "0.4.3-rc.3" readme = "README.md" authors.workspace = true repository.workspace = true @@ -11,7 +11,7 @@ keywords.workspace = true rust-version.workspace = true [dependencies] -crux_core = { version = "0.8.0-rc.2", path = "../crux_core" } +crux_core = { version = "0.8.0-rc.3", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } chrono = { version = "0.4.38", features = ["serde"], optional = true } thiserror = "1.0.61" diff --git a/examples/bridge_echo/Cargo.lock b/examples/bridge_echo/Cargo.lock index ce73ec94..ba1def2f 100644 --- a/examples/bridge_echo/Cargo.lock +++ b/examples/bridge_echo/Cargo.lock @@ -447,7 +447,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", diff --git a/examples/cat_facts/Cargo.lock b/examples/cat_facts/Cargo.lock index 3e8e9ac2..34974924 100644 --- a/examples/cat_facts/Cargo.lock +++ b/examples/cat_facts/Cargo.lock @@ -430,7 +430,7 @@ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -448,7 +448,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.9.2-rc.2" +version = "0.9.2-rc.3" dependencies = [ "anyhow", "async-trait", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.4.1-rc.2" +version = "0.4.1-rc.3" dependencies = [ "anyhow", "crux_core", @@ -475,7 +475,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "crux_platform" -version = "0.1.12-rc.2" +version = "0.1.12-rc.3" dependencies = [ "crux_core", "serde", @@ -494,7 +494,7 @@ dependencies = [ [[package]] name = "crux_time" -version = "0.4.3-rc.2" +version = "0.4.3-rc.3" dependencies = [ "chrono", "crux_core", diff --git a/examples/counter/Cargo.lock b/examples/counter/Cargo.lock index 191fb160..e2a085f0 100644 --- a/examples/counter/Cargo.lock +++ b/examples/counter/Cargo.lock @@ -1074,7 +1074,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -1092,7 +1092,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.9.2-rc.2" +version = "0.9.2-rc.3" dependencies = [ "anyhow", "async-trait", @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", diff --git a/examples/hello_world/Cargo.lock b/examples/hello_world/Cargo.lock index 20f680b5..e5544172 100644 --- a/examples/hello_world/Cargo.lock +++ b/examples/hello_world/Cargo.lock @@ -235,7 +235,7 @@ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", diff --git a/examples/notes/Cargo.lock b/examples/notes/Cargo.lock index 4c6bc556..3b638b65 100644 --- a/examples/notes/Cargo.lock +++ b/examples/notes/Cargo.lock @@ -300,7 +300,7 @@ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -318,7 +318,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.4.1-rc.2" +version = "0.4.1-rc.3" dependencies = [ "anyhow", "crux_core", @@ -328,7 +328,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", diff --git a/examples/simple_counter/Cargo.lock b/examples/simple_counter/Cargo.lock index 3a377447..a4f6c589 100644 --- a/examples/simple_counter/Cargo.lock +++ b/examples/simple_counter/Cargo.lock @@ -562,7 +562,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "crux_core" -version = "0.8.0-rc.2" +version = "0.8.0-rc.3" dependencies = [ "anyhow", "bincode", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.3.10-rc.2" +version = "0.3.10-rc.3" dependencies = [ "darling", "proc-macro-error", diff --git a/templates/simple_counter/shared_types/Cargo.toml b/templates/simple_counter/shared_types/Cargo.toml index 877688f5..d077105e 100644 --- a/templates/simple_counter/shared_types/Cargo.toml +++ b/templates/simple_counter/shared_types/Cargo.toml @@ -12,5 +12,5 @@ rust-version.workspace = true [build-dependencies] anyhow.workspace = true -crux_core = { version = "0.8.0-rc.2", features = ["typegen"] } +crux_core = { version = "0.8.0-rc.3", features = ["typegen"] } shared = { path = "../shared", features = ["typegen"] }