diff --git a/CHANGELOG.md b/CHANGELOG.md index 64800d0..b4d6cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +# [0.2.5] - 2024-06-20 + +# Changed + - Don't name the output of the const block to work around `non_local_definitions` error (#47) + - Reference the `core` crate correctly to avoid clashes with modules named `core` (#45) + - Explicitly list MSRV in Cargo.toml (#51) + - Bump edition to 2021 (#51) + # [0.2.4] - 2022-05-02 ## Added diff --git a/Cargo.toml b/Cargo.toml index 5d97a6a..c80116c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "displaydoc" -version = "0.2.4" +version = "0.2.5" +rust-version = "1.56.0" authors = ["Jane Lusby "] -edition = "2018" +edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/yaahc/displaydoc"