diff --git a/CHANGELOG.md b/CHANGELOG.md index 30894c1..79d75f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2] - 2024-12-16 + +- Support older nightly versions because the one that build the docs is currently frozen. + ## [0.3.1] - 2024-12-14 - Restructure the project. diff --git a/Cargo.lock b/Cargo.lock index d280ba1..98dfdb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,14 +33,14 @@ dependencies = [ [[package]] name = "trait-cast" -version = "0.3.1" +version = "0.3.2" dependencies = [ "trait-cast-macros", ] [[package]] name = "trait-cast-macros" -version = "0.3.1" +version = "0.3.2" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 772da50..6302464 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,5 @@ +cargo-features = ["edition2024"] + [workspace] resolver = "2" @@ -51,7 +53,7 @@ unused_qualifications = "warn" [package] name = "trait-cast" -version = "0.3.1" +version = "0.3.2" edition = "2024" license = "MIT OR Apache-2.0" description = "Get your own Any with support for casting to trait objects." @@ -68,7 +70,7 @@ alloc = [] min_specialization = [] [dependencies] -trait-cast-macros = { path = "macros", version = "0.3.0" } +trait-cast-macros = { path = "macros" } [lints] workspace = true diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 6739fd7..ef08b19 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,8 @@ +cargo-features = ["edition2024"] + [package] name = "trait-cast-macros" -version = "0.3.1" +version = "0.3.2" edition = "2024" license = "MIT OR Apache-2.0" description = "Proc-macro implementation for the 'trait-cast' crate." diff --git a/rust-toolchain.toml b/rust-toolchain.toml index cba303d..babbda1 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly" +channel = "nightly-2024-11-20" components = [ "rustc", "cargo",