Skip to content

Commit c354bad

Browse files
authored
Prepare 2.1.0 release (#521)
1 parent 983875f commit c354bad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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-
## Unreleased
8+
## 2.1.0 - 2025-12-02
99

1010
### Added
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.0.1"
3+
version = "2.1.0"
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.0.1", path = "impl" }
30+
derive_more-impl = { version = "=2.1.0", path = "impl" }
3131

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,12 @@ Changing [MSRV] (minimum supported Rust version) of this crate is treated as a *
223223
- So, if [MSRV] changes are **NOT concerning** for your project, just use the default [caret requirement]:
224224
```toml
225225
[dependencies]
226-
derive_more = "2" # or "2.0", or "^2.0"
226+
derive_more = "2" # or "2.1", or "^2.1"
227227
```
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.0" # or "~2.0.0"
231+
derive_more = "~2.1" # or "~2.1.0"
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.0.1"
3+
version = "2.1.0"
44
edition = "2021"
55
rust-version = "1.81.0"
66
description = "Internal implementation of `derive_more` crate"

0 commit comments

Comments
 (0)