diff --git a/Cargo.lock b/Cargo.lock index 7a9fa4f5b..df40df7bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "crux_core" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "assert_fs", @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "crux_http" -version = "0.9.2" +version = "0.9.3" dependencies = [ "anyhow", "assert_fs", @@ -403,7 +403,7 @@ dependencies = [ [[package]] name = "crux_kv" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "crux_core", @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "crux_platform" -version = "0.1.12" +version = "0.1.13" dependencies = [ "crux_core", "serde", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "crux_time" -version = "0.4.3" +version = "0.4.4" dependencies = [ "chrono", "crux_core", diff --git a/crux_core/CHANGELOG.md b/crux_core/CHANGELOG.md index 6a122f84f..7c0d933cb 100644 --- a/crux_core/CHANGELOG.md +++ b/crux_core/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.8.1](https://github.com/redbadger/crux/compare/crux_core-v0.8.0...crux_core-v0.8.1) - 2024-08-12 + +### Bug fixes +- Fix a crash when dropping the core caused by the drop order interacting with async channels + ## [0.8.0](https://github.com/redbadger/crux/compare/crux_core-v0.7.6...crux_core-v0.8.0) - 2024-05-21 Note: this is a breaking change release. diff --git a/crux_core/Cargo.toml b/crux_core/Cargo.toml index 3f743f92d..0d890736a 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" +version = "0.8.1" readme = "README.md" authors.workspace = true repository.workspace = true diff --git a/crux_http/CHANGELOG.md b/crux_http/CHANGELOG.md index c81378c87..4e617954a 100644 --- a/crux_http/CHANGELOG.md +++ b/crux_http/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.9.3](https://github.com/redbadger/crux/compare/crux_http-v0.9.2...crux_http-v0.9.3) - 2024-08-12 + +### Other +- updated the following local packages: crux_core + ## [0.9.2](https://github.com/redbadger/crux/compare/crux_http-v0.9.1...crux_http-v0.9.2) - 2024-05-21 ### Other diff --git a/crux_http/Cargo.toml b/crux_http/Cargo.toml index 4d28edb74..10542c27f 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" +version = "0.9.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", path = "../crux_core" } +crux_core = { version = "0.8.1", 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 059b56ba7..bcd62dc03 100644 --- a/crux_kv/CHANGELOG.md +++ b/crux_kv/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.4.2](https://github.com/redbadger/crux/compare/crux_kv-v0.4.1...crux_kv-v0.4.2) - 2024-08-12 + +### Other +- updated the following local packages: crux_core + ## [0.4.1](https://github.com/redbadger/crux/compare/crux_kv-v0.4.0...crux_kv-v0.4.1) - 2024-05-21 ### Other diff --git a/crux_kv/Cargo.toml b/crux_kv/Cargo.toml index 7449990fe..a0e598822 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" +version = "0.4.2" 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", path = "../crux_core" } +crux_core = { version = "0.8.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } thiserror = "1.0.61" diff --git a/crux_platform/CHANGELOG.md b/crux_platform/CHANGELOG.md index 2bea902eb..b25f8922d 100644 --- a/crux_platform/CHANGELOG.md +++ b/crux_platform/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.13](https://github.com/redbadger/crux/compare/crux_platform-v0.1.12...crux_platform-v0.1.13) - 2024-08-12 + +### Other +- updated the following local packages: crux_core + ## [0.1.12](https://github.com/redbadger/crux/compare/crux_platform-v0.1.11...crux_platform-v0.1.12) - 2024-05-21 ### Other diff --git a/crux_platform/Cargo.toml b/crux_platform/Cargo.toml index 609e6a1f9..322a657a1 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" +version = "0.1.13" 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", path = "../crux_core" } +crux_core = { version = "0.8.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } diff --git a/crux_time/CHANGELOG.md b/crux_time/CHANGELOG.md index aa755aa11..27cefe33f 100644 --- a/crux_time/CHANGELOG.md +++ b/crux_time/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to ## [Unreleased] +## [0.4.4](https://github.com/redbadger/crux/compare/crux_time-v0.4.3...crux_time-v0.4.4) - 2024-08-12 + +### Other +- updated the following local packages: crux_core + ## [0.4.3](https://github.com/redbadger/crux/compare/crux_time-v0.4.2...crux_time-v0.4.3) - 2024-05-21 ### Other diff --git a/crux_time/Cargo.toml b/crux_time/Cargo.toml index 50c72186f..5851088fd 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" +version = "0.4.4" 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", path = "../crux_core" } +crux_core = { version = "0.8.1", path = "../crux_core" } serde = { workspace = true, features = ["derive"] } chrono = { version = "0.4.38", features = ["serde"], optional = true } thiserror = "1.0.61"