Skip to content

Commit a353a7f

Browse files
committed
v0.3.2
1 parent 93f1871 commit a353a7f

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.2] - 2024-12-16
10+
11+
- Support older nightly versions because the one that build the docs is currently frozen.
12+
913
## [0.3.1] - 2024-12-14
1014

1115
- Restructure the project.

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cargo-features = ["edition2024"]
2+
13
[workspace]
24
resolver = "2"
35

@@ -51,7 +53,7 @@ unused_qualifications = "warn"
5153

5254
[package]
5355
name = "trait-cast"
54-
version = "0.3.1"
56+
version = "0.3.2"
5557
edition = "2024"
5658
license = "MIT OR Apache-2.0"
5759
description = "Get your own Any with support for casting to trait objects."
@@ -68,7 +70,7 @@ alloc = []
6870
min_specialization = []
6971

7072
[dependencies]
71-
trait-cast-macros = { path = "macros", version = "0.3.0" }
73+
trait-cast-macros = { path = "macros", version = "0.3.2" }
7274

7375
[lints]
7476
workspace = true

macros/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
cargo-features = ["edition2024"]
2+
13
[package]
24
name = "trait-cast-macros"
3-
version = "0.3.1"
5+
version = "0.3.2"
46
edition = "2024"
57
license = "MIT OR Apache-2.0"
68
description = "Proc-macro implementation for the 'trait-cast' crate."

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "nightly"
2+
channel = "nightly-2024-11-20"
33
components = [
44
"rustc",
55
"cargo",

0 commit comments

Comments
 (0)