From 19c239da0d3538f23c4e3ec8f6153f6bdb34ee8b Mon Sep 17 00:00:00 2001 From: Soares Chen Date: Thu, 16 Jan 2025 17:27:21 +0100 Subject: [PATCH] Release v0.3.1 (#61) * Release v0.3.1 * Update changelog --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 14 +++++++------- crates/cgp-core/Cargo.toml | 2 +- crates/cgp-error/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 390ba44..123502f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.3.1 (2025-01-16) + +- Update Rust MSRV to v1.84 - [#58](https://github.com/contextgeneric/cgp/pull/58) + +- Add `HasAsyncErrorType` to prelude - [#59](https://github.com/contextgeneric/cgp/pull/59) + +- Add `CanRaiseAsyncError` and `CanWrapAsyncError` to `cgp-error` and prelude - [#60](https://github.com/contextgeneric/cgp/pull/60) + + ## v0.3.0 (2025-01-08) - Introduce Accessor Component Macros - [#56](https://github.com/contextgeneric/cgp/pull/55) diff --git a/Cargo.lock b/Cargo.lock index 131f275..5f1ba78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "cgp-error" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cgp-async", "cgp-component", @@ -225,9 +225,9 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "prettyplease" -version = "0.2.27" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "483f8c21f64f3ea09fe0f30f5d48c3e8eefe5dac9129f0075f76593b4c1da705" +checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac" dependencies = [ "proc-macro2", "syn", @@ -235,9 +235,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.92" +version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" dependencies = [ "unicode-ident", ] @@ -253,9 +253,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.95" +version = "2.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a" +checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" dependencies = [ "proc-macro2", "quote", diff --git a/crates/cgp-core/Cargo.toml b/crates/cgp-core/Cargo.toml index d6a42f5..5c54a46 100644 --- a/crates/cgp-core/Cargo.toml +++ b/crates/cgp-core/Cargo.toml @@ -20,6 +20,6 @@ cgp-async = { version = "0.3.0", default-features = false } cgp-component = { version = "0.3.0" } cgp-component-macro = { version = "0.3.0" } cgp-type = { version = "0.3.0" } -cgp-error = { version = "0.3.0" } +cgp-error = { version = "0.3.1" } cgp-field = { version = "0.3.0" } cgp-field-macro = { version = "0.3.0" } \ No newline at end of file diff --git a/crates/cgp-error/Cargo.toml b/crates/cgp-error/Cargo.toml index 54edeee..69e7376 100644 --- a/crates/cgp-error/Cargo.toml +++ b/crates/cgp-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cgp-error" -version = "0.3.0" +version = "0.3.1" edition = { workspace = true } license = { workspace = true } repository = { workspace = true }