Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 0.2.5, edition 2021 #51

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "displaydoc"
version = "0.2.4"
version = "0.2.5"
rust-version = "1.56.0"
authors = ["Jane Lusby <[email protected]>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/yaahc/displaydoc"
Expand Down
Loading