diff --git a/Cargo.lock b/Cargo.lock index 357c8b48..11f56772 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -364,7 +364,7 @@ dependencies = [ [[package]] name = "crux_core" -version = "0.9.0-rc.1" +version = "0.9.0" dependencies = [ "anyhow", "assert_fs", @@ -392,7 +392,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.10.0-rc.1" +version = "0.10.0" dependencies = [ "anyhow", "assert_fs", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.5.0-rc.1" +version = "0.5.0" dependencies = [ "anyhow", "crux_core", @@ -424,7 +424,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.4.0-rc.1" +version = "0.4.0" dependencies = [ "crux_core", "crux_http", @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "crux_platform" -version = "0.2.0-rc.1" +version = "0.2.0" dependencies = [ "crux_core", "serde", @@ -448,7 +448,7 @@ dependencies = [ [[package]] name = "crux_time" -version = "0.5.0-rc.1" +version = "0.5.0" dependencies = [ "chrono", "crux_core", diff --git a/crux_core/CHANGELOG.md b/crux_core/CHANGELOG.md index 0ca32dd2..8909617d 100644 --- a/crux_core/CHANGELOG.md +++ b/crux_core/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to ## [Unreleased] -## [0.9.0-rc.1](https://github.com/redbadger/crux/compare/crux_core-v0.8.1...crux_core-v0.9.0-rc.1) - 2024-08-13 +## [0.9.0](https://github.com/redbadger/crux/compare/crux_core-v0.8.1...crux_core-v0.9.0) - 2024-08-13 ### Other - merge 0.8.1 to master diff --git a/crux_core/Cargo.toml b/crux_core/Cargo.toml index 637f1503..3252c594 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.9.0-rc.1" +version = "0.9.0" 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.4.0-rc.1", path = "../crux_macros" } +crux_macros = { version = "0.4.0", 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 5138923a..9ba1948a 100644 --- a/crux_http/CHANGELOG.md +++ b/crux_http/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to ## [Unreleased] -## [0.10.0-rc.1](https://github.com/redbadger/crux/compare/crux_http-v0.9.3...crux_http-v0.10.0-rc.1) - 2024-08-13 +## [0.10.0](https://github.com/redbadger/crux/compare/crux_http-v0.9.3...crux_http-v0.10.0) - 2024-08-13 It is no longer necessary to register types separately for this capability. So you no longer need this in your `build.rs` file in the `shared_types` crate: diff --git a/crux_http/Cargo.toml b/crux_http/Cargo.toml index 0a711493..490ca725 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.10.0-rc.1" +version = "0.10.0" readme = "README.md" authors.workspace = true repository.workspace = true @@ -19,7 +19,7 @@ typegen = [] [dependencies] anyhow.workspace = true async-trait = "0.1.82" -crux_core = { version = "0.9.0-rc.1", path = "../crux_core" } +crux_core = { version = "0.9.0", path = "../crux_core" } derive_builder = "0.20.1" encoding_rs = { version = "0.8.34", optional = true } futures-util = "0.3" diff --git a/crux_kv/Cargo.toml b/crux_kv/Cargo.toml index 2aa18096..f8f492de 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.5.0-rc.1" +version = "0.5.0" readme = "README.md" authors.workspace = true repository.workspace = true @@ -15,6 +15,6 @@ typegen = [] [dependencies] anyhow.workspace = true -crux_core = { version = "0.9.0-rc.1", path = "../crux_core" } +crux_core = { version = "0.9.0", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } thiserror = "1.0.63" diff --git a/crux_macros/Cargo.toml b/crux_macros/Cargo.toml index 5a80dc77..af2bb874 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.4.0-rc.1" +version = "0.4.0" authors.workspace = true repository.workspace = true edition.workspace = true diff --git a/crux_platform/Cargo.toml b/crux_platform/Cargo.toml index 48b6acf9..7da3c3cd 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.2.0-rc.1" +version = "0.2.0" 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.9.0-rc.1", path = "../crux_core" } +crux_core = { version = "0.9.0", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } diff --git a/crux_time/Cargo.toml b/crux_time/Cargo.toml index f0d6c876..b08113fd 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.5.0-rc.1" +version = "0.5.0" readme = "README.md" authors.workspace = true repository.workspace = true @@ -14,7 +14,7 @@ rust-version.workspace = true typegen = [] [dependencies] -crux_core = { version = "0.9.0-rc.1", path = "../crux_core" } +crux_core = { version = "0.9.0", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } chrono = { version = "0.4.38", features = ["serde"], optional = true } thiserror = "1.0.63" diff --git a/examples/bridge_echo/Cargo.toml b/examples/bridge_echo/Cargo.toml index 2b5e4c21..08687a15 100644 --- a/examples/bridge_echo/Cargo.toml +++ b/examples/bridge_echo/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.66" [workspace.dependencies] anyhow = "1.0.89" -crux_core = "0.9.0-rc.1" +crux_core = "0.9.0" serde = "1.0.210" [workspace.metadata.bin] diff --git a/examples/cat_facts/Cargo.toml b/examples/cat_facts/Cargo.toml index 5aa4b0d4..f7d01c21 100644 --- a/examples/cat_facts/Cargo.toml +++ b/examples/cat_facts/Cargo.toml @@ -12,11 +12,11 @@ rust-version = "1.66" [workspace.dependencies] anyhow = "1.0.89" -crux_core = "0.9.0-rc.1" -crux_http = "0.10.0-rc.1" -crux_kv = "0.5.0-rc.1" -crux_platform = "0.2.0-rc.1" -crux_time = { version = "0.5.0-rc.1", features = ["chrono"] } +crux_core = "0.9.0" +crux_http = "0.10.0" +crux_kv = "0.5.0" +crux_platform = "0.2.0" +crux_time = { version = "0.5.0", features = ["chrono"] } serde = "1.0.210" [workspace.metadata.bin] diff --git a/examples/counter/Cargo.toml b/examples/counter/Cargo.toml index 5ac8ba11..18c32fd2 100644 --- a/examples/counter/Cargo.toml +++ b/examples/counter/Cargo.toml @@ -20,8 +20,8 @@ rust-version = "1.66" [workspace.dependencies] anyhow = "1.0.89" -crux_core = "0.9.0-rc.1" -crux_http = "0.10.0-rc.1" +crux_core = "0.9.0" +crux_http = "0.10.0" serde = "1.0.210" [workspace.metadata.bin] diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 8b98f9be..8ecd0689 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.66" [workspace.dependencies] anyhow = "1.0.89" -crux_core = "0.9.0-rc.1" +crux_core = "0.9.0" serde = "1.0.210" [workspace.metadata.bin] diff --git a/examples/notes/Cargo.toml b/examples/notes/Cargo.toml index 06f32147..bcee3ad0 100644 --- a/examples/notes/Cargo.toml +++ b/examples/notes/Cargo.toml @@ -12,8 +12,8 @@ rust-version = "1.66" [workspace.dependencies] anyhow = "1.0" -crux_core = "0.9.0-rc.1" -crux_kv = "0.5.0-rc.1" +crux_core = "0.9.0" +crux_kv = "0.5.0" serde = "1.0" [workspace.metadata.bin] diff --git a/examples/tap_to_pay/Cargo.toml b/examples/tap_to_pay/Cargo.toml index f6f8be7b..3491dd9a 100644 --- a/examples/tap_to_pay/Cargo.toml +++ b/examples/tap_to_pay/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.68" [workspace.dependencies] anyhow = "1.0.89" -crux_core = "0.9.0-rc.1" +crux_core = "0.9.0" serde = "1.0.210" [workspace.metadata.bin]