Skip to content

Commit

Permalink
Merge pull request #242 from redbadger/rc-0.8.1
Browse files Browse the repository at this point in the history
crux_core 0.8.0-rc.1
  • Loading branch information
StuartHarris authored May 20, 2024
2 parents 54ca824 + 0381249 commit 05fd9e4
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 19 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.8.0-rc.0](https://github.com/redbadger/crux/compare/crux_core-v0.7.6...crux_core-v0.8.0-rc.0) - 2024-05-20
## [0.8.0-rc.1](https://github.com/redbadger/crux/compare/crux_core-v0.7.6...crux_core-v0.8.0-rc.1) - 2024-05-20

Release candidate for 0.8.0

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.8.0-rc.0"
version = "0.8.0-rc.1"
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.12"
crux_macros = { version = "0.3.9", path = "../crux_macros" }
crux_macros = { version = "0.3.10-rc.1", path = "../crux_macros" }
erased-serde = "0.4"
futures = "0.3.30"
serde = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 6 additions & 0 deletions crux_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to

## [Unreleased]

## [0.9.2-rc.1](https://github.com/redbadger/crux/compare/crux_http-v0.9.1...crux_http-v0.9.2-rc.1) - 2024-05-20

### Other

- Release crux_core v0.8.0-rc.1

## [0.9.1](https://github.com/redbadger/crux/compare/crux_http-v0.9.0...crux_http-v0.9.1) - 2024-05-14

Minor maintenance release
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.1"
version = "0.9.2-rc.1"
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-rc.0", path = "../crux_core" }
crux_core = { version = "0.8.0-rc.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
7 changes: 7 additions & 0 deletions crux_kv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to

## [Unreleased]

## [0.4.1-rc.1](https://github.com/redbadger/crux/compare/crux_kv-v0.4.0...crux_kv-v0.4.1-rc.1) - 2024-05-20

### Other

- Release crux_core v0.8.0-rc.1
- registry now slab allocated with u32

## [0.4.0](https://github.com/redbadger/crux/compare/crux_kv-v0.3.0...crux_kv-v0.4.0) - 2024-05-17

### Breaking Changes
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.0"
version = "0.4.1-rc.1"
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-rc.0", path = "../crux_core" }
crux_core = { version = "0.8.0-rc.1", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
thiserror = "1.0.60"
8 changes: 8 additions & 0 deletions crux_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to

## [Unreleased]

## [0.3.10-rc.1](https://github.com/redbadger/crux/compare/crux_macros-v0.3.9...crux_macros-v0.3.10-rc.1) - 2024-05-20

### Other

- update docs, comments and book
- Remove remaining mentions of the app attribute for Effect macro
- Make WithContext generic over Event, not App, enabling App types to be generic

## [0.3.9](https://github.com/redbadger/crux/compare/crux_macros-v0.3.8...crux_macros-v0.3.9) - 2024-05-14

This is a minor maintenance release, with the most interesting change being a fix for the export derive macro to work with renamed `Effect` types. (see https://github.com/redbadger/crux/pull/221 for more info)
Expand Down
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.3.9"
version = "0.3.10-rc.1"
authors.workspace = true
repository.workspace = true
edition.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions crux_platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,51 +1,67 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.12-rc.1](https://github.com/redbadger/crux/compare/crux_platform-v0.1.11...crux_platform-v0.1.12-rc.1) - 2024-05-20

### Other

- Release crux_core v0.8.0-rc.1

## [0.1.11](https://github.com/redbadger/crux/compare/crux_platform-v0.1.10...crux_platform-v0.1.11) - 2024-05-15

### Other

- remove unused deps

## [0.1.10](https://github.com/redbadger/crux/compare/crux_platform-v0.1.9...crux_platform-v0.1.10) - 2024-05-14

### Other

- relax vaious func traits from Fn to FnOnce

## [0.1.9](https://github.com/redbadger/crux/compare/crux_platform-v0.1.8...crux_platform-v0.1.9) - 2024-03-24

### Other

- update Cargo.toml dependencies

## [0.1.8](https://github.com/redbadger/crux/compare/crux_platform-v0.1.7...crux_platform-v0.1.8) - 2024-02-02

### Fixed

- fix doc test deps

### Other

- Export crux_macros from crux_core and change docs

## [0.1.7](https://github.com/redbadger/crux/compare/crux_platform-v0.1.6...crux_platform-v0.1.7) - 2024-01-11

### Other

- update Cargo.toml dependencies

## [0.1.6](https://github.com/redbadger/crux/compare/crux_platform-v0.1.5...crux_platform-v0.1.6) - 2023-12-03

### Other

- updated the following local packages: crux_core

## [0.1.5](https://github.com/redbadger/crux/compare/crux_platform-v0.1.4...crux_platform-v0.1.5) - 2023-11-29

### Other

- update dependencies

## [0.1.4](https://github.com/redbadger/crux/compare/crux_platform-v0.1.3...crux_platform-v0.1.4) - 2023-10-25

### Other

- versions for compatibility with semver checks
- implement derive macro for Capability trait
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.11"
version = "0.1.12-rc.1"
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-rc.0", path = "../crux_core" }
crux_core = { version = "0.8.0-rc.1", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
10 changes: 10 additions & 0 deletions crux_time/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,22 @@ and this project adheres to

## [Unreleased]

## [0.4.3-rc.1](https://github.com/redbadger/crux/compare/crux_time-v0.4.2...crux_time-v0.4.3-rc.1) - 2024-05-20

### Other

- Release crux_core v0.8.0-rc.1

## [0.4.2](https://github.com/redbadger/crux/compare/crux_time-v0.4.1...crux_time-v0.4.2) - 2024-05-15

### Other

- remove unused deps

## [0.4.1](https://github.com/redbadger/crux/compare/crux_time-v0.4.0...crux_time-v0.4.1) - 2024-05-14

### Other

- deps
- Merge branch 'master' into relax-callback-bounds
- address comments
Expand All @@ -24,6 +32,7 @@ and this project adheres to
## [0.4.0](https://github.com/redbadger/crux/compare/crux_time-v0.3.1...crux_time-v0.4.0) - 2024-04-29

### Other

- some better names
- add duration from millis
- update doc comments
Expand All @@ -33,6 +42,7 @@ and this project adheres to
## [0.3.1](https://github.com/redbadger/crux/compare/crux_time-v0.3.0...crux_time-v0.3.1) - 2024-03-24

### Fixed

- fix a link error in README

## [0.3.0](https://github.com/redbadger/crux/compare/crux_time-v0.2.0...crux_time-v0.3.0) - 2024-02-02
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.2"
version = "0.4.3-rc.1"
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-rc.0", path = "../crux_core" }
crux_core = { version = "0.8.0-rc.1", path = "../crux_core" }
serde = { workspace = true, features = ["derive"] }
chrono = { version = "0.4.38", features = ["serde"], optional = true }
thiserror = "1.0.60"
Expand Down
2 changes: 1 addition & 1 deletion templates/simple_counter/shared_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ rust-version.workspace = true

[build-dependencies]
anyhow.workspace = true
crux_core = { version = "0.8.0-rc.0", features = ["typegen"] }
crux_core = { version = "0.8.0-rc.1", features = ["typegen"] }
shared = { path = "../shared", features = ["typegen"] }

0 comments on commit 05fd9e4

Please sign in to comment.