Skip to content

Commit 289988a

Browse files
authored
Prepare 2.1.1 release (#529)
Includes hygienic fix for `derive(Error)`.
1 parent d820ec6 commit 289988a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## master
8+
## 2.1.1 - 2025-12-19
99

1010
### Fixed
1111

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_more"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
edition = "2021"
55
rust-version = "1.81.0"
66
description = "Adds #[derive(x)] macros for more traits"
@@ -27,7 +27,7 @@ include = [
2727
members = ["impl"]
2828

2929
[dependencies]
30-
derive_more-impl = { version = "=2.1.0", path = "impl" }
30+
derive_more-impl = { version = "=2.1.1", path = "impl" }
3131

3232
[build-dependencies]
3333
rustc_version = { version = "0.4", optional = true }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Changing [MSRV] (minimum supported Rust version) of this crate is treated as a *
228228
- However, if [MSRV] changes are concerning for your project, then use the [tilde requirement] to **pin to a specific minor version**:
229229
```toml
230230
[dependencies]
231-
derive_more = "~2.1" # or "~2.1.0"
231+
derive_more = "~2.1" # or "~2.1.1"
232232
```
233233

234234

impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_more-impl"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
edition = "2021"
55
rust-version = "1.81.0"
66
description = "Internal implementation of `derive_more` crate"

0 commit comments

Comments
 (0)