Skip to content

Commit

Permalink
remove -rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Sep 16, 2024
1 parent 6555367 commit c37228f
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 31 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crux_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0-rc.1"
version = "0.9.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crux_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.10.0-rc.1"
version = "0.10.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
Expand All @@ -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"
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.5.0-rc.1"
version = "0.5.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
Expand All @@ -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"
2 changes: 1 addition & 1 deletion crux_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
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.2.0-rc.1"
version = "0.2.0"
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.9.0-rc.1", path = "../crux_core" }
crux_core = { version = "0.9.0", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
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.5.0-rc.1"
version = "0.5.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/bridge_echo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
10 changes: 5 additions & 5 deletions examples/cat_facts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions examples/counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions examples/notes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion examples/tap_to_pay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit c37228f

Please sign in to comment.