diff --git a/Cargo.lock b/Cargo.lock index 40d94327..f4acce92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -358,7 +358,7 @@ dependencies = [ [[package]] name = "crux_core" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "assert_fs", @@ -386,7 +386,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "assert_fs", @@ -410,7 +410,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "crux_core", @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "crux_macros" -version = "0.4.3" +version = "0.4.4" dependencies = [ "crux_core", "crux_http", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "crux_platform" -version = "0.3.0" +version = "0.3.1" dependencies = [ "crux_core", "serde", @@ -445,7 +445,7 @@ dependencies = [ [[package]] name = "crux_time" -version = "0.8.0" +version = "0.8.1" dependencies = [ "chrono", "crux_core", diff --git a/crux_core/CHANGELOG.md b/crux_core/CHANGELOG.md index ce9826bb..00d4c2dc 100644 --- a/crux_core/CHANGELOG.md +++ b/crux_core/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to ## [Unreleased] +## [0.11.1](https://github.com/redbadger/crux/compare/crux_core-v0.11.0...crux_core-v0.11.1) - 2025-01-22 + +### Other + +- Allow .map on Request and Stream builders +- update examples + ## [0.11.0](https://github.com/redbadger/crux/compare/crux_core-v0.10.1...crux_core-v0.11.0) - 2025-01-21 _This release is a breaking change._ diff --git a/crux_core/Cargo.toml b/crux_core/Cargo.toml index 7a1b2b07..8c889677 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.11.0" +version = "0.11.1" 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.14" -crux_macros = { version = "0.4.3", path = "../crux_macros" } +crux_macros = { version = "0.4.4", path = "../crux_macros" } erased-serde = "0.4" futures = "0.3.31" serde = { workspace = true, features = ["derive"] } diff --git a/crux_http/CHANGELOG.md b/crux_http/CHANGELOG.md index e5350177..e8871dd8 100644 --- a/crux_http/CHANGELOG.md +++ b/crux_http/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to ## [Unreleased] +## [0.11.1](https://github.com/redbadger/crux/compare/crux_http-v0.11.0...crux_http-v0.11.1) - 2025-01-22 + +### Other + +- `http` crate compatibility (conversions for request and response) +- update examples + ## [0.11.0](https://github.com/redbadger/crux/compare/crux_http-v0.10.4...crux_http-v0.11.0) - 2025-01-21 ### Fixed diff --git a/crux_http/Cargo.toml b/crux_http/Cargo.toml index 6631fd3f..4073fb55 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.11.0" +version = "0.11.1" readme = "README.md" authors.workspace = true repository.workspace = true @@ -20,7 +20,7 @@ http-compat = ["dep:http"] [dependencies] anyhow.workspace = true async-trait = "0.1.85" -crux_core = { version = "0.11.0", path = "../crux_core" } +crux_core = { version = "0.11.1", path = "../crux_core" } derive_builder = "0.20.2" encoding_rs = { version = "0.8.35", optional = true } futures-util = "0.3" diff --git a/crux_kv/CHANGELOG.md b/crux_kv/CHANGELOG.md index 9a4e6d0f..938659c7 100644 --- a/crux_kv/CHANGELOG.md +++ b/crux_kv/CHANGELOG.md @@ -8,6 +8,14 @@ and this project adheres to ## [Unreleased] +## [0.6.1](https://github.com/redbadger/crux/compare/crux_kv-v0.6.0...crux_kv-v0.6.1) - 2025-01-22 + +### Other + +- Return nicer types from crux_kv command builders +- Add command API to crux_kv +- update examples + ## [0.6.0](https://github.com/redbadger/crux/compare/crux_kv-v0.5.3...crux_kv-v0.6.0) - 2025-01-21 ### Other diff --git a/crux_kv/Cargo.toml b/crux_kv/Cargo.toml index 9c471f31..903cc523 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.6.0" +version = "0.6.1" readme = "README.md" authors.workspace = true repository.workspace = true @@ -15,7 +15,7 @@ typegen = ["crux_core/typegen"] [dependencies] anyhow.workspace = true -crux_core = { version = "0.11.0", path = "../crux_core" } +crux_core = { version = "0.11.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } serde_bytes = "0.11.15" thiserror = "2.0.11" diff --git a/crux_macros/CHANGELOG.md b/crux_macros/CHANGELOG.md index bee5e5bc..6edf735f 100644 --- a/crux_macros/CHANGELOG.md +++ b/crux_macros/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to ## [Unreleased] +## [0.4.4](https://github.com/redbadger/crux/compare/crux_macros-v0.4.3...crux_macros-v0.4.4) - 2025-01-22 + +### Other + +- update dependencies +- update examples + ## [0.4.3](https://github.com/redbadger/crux/compare/crux_macros-v0.4.2...crux_macros-v0.4.3) - 2025-01-21 ### Other diff --git a/crux_macros/Cargo.toml b/crux_macros/Cargo.toml index 469bdb3e..69e72332 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.3" +version = "0.4.4" authors.workspace = true repository.workspace = true edition.workspace = true diff --git a/crux_platform/CHANGELOG.md b/crux_platform/CHANGELOG.md index d91231c5..93c5dc25 100644 --- a/crux_platform/CHANGELOG.md +++ b/crux_platform/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/redbadger/crux/compare/crux_platform-v0.3.0...crux_platform-v0.3.1) - 2025-01-22 + +### Other + +- update Cargo.toml dependencies + ## [0.3.0](https://github.com/redbadger/crux/compare/crux_platform-v0.2.3...crux_platform-v0.3.0) - 2025-01-21 ### Other diff --git a/crux_platform/Cargo.toml b/crux_platform/Cargo.toml index 7c0426d3..6a9bba7d 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.3.0" +version = "0.3.1" 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.11.0", path = "../crux_core" } +crux_core = { version = "0.11.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } diff --git a/crux_time/CHANGELOG.md b/crux_time/CHANGELOG.md index 65181374..c616a1fe 100644 --- a/crux_time/CHANGELOG.md +++ b/crux_time/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to ## [Unreleased] +## [0.8.1](https://github.com/redbadger/crux/compare/crux_time-v0.8.0...crux_time-v0.8.1) - 2025-01-22 + +### Other + +- update dependencies +- update examples + ## [0.8.0](https://github.com/redbadger/crux/compare/crux_time-v0.7.0...crux_time-v0.8.0) - 2025-01-21 ### Other diff --git a/crux_time/Cargo.toml b/crux_time/Cargo.toml index 858fec59..4f30321e 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.8.0" +version = "0.8.1" readme = "README.md" authors.workspace = true repository.workspace = true @@ -15,7 +15,7 @@ typegen = ["crux_core/typegen"] [dependencies] chrono = { version = "0.4.39", features = ["serde"], optional = true } -crux_core = { version = "0.11.0", path = "../crux_core" } +crux_core = { version = "0.11.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } thiserror = "2.0.11"