Skip to content

Commit

Permalink
Release crux_core-v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
charypar committed Aug 12, 2024
1 parent 8c21072 commit 84de918
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions crux_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion crux_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions crux_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crux_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
Expand Down
5 changes: 5 additions & 0 deletions crux_kv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crux_kv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
5 changes: 5 additions & 0 deletions crux_platform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crux_platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"] }
5 changes: 5 additions & 0 deletions crux_time/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crux_time/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 84de918

Please sign in to comment.