Skip to content

Commit d2f96a6

Browse files
authored
Prepare v1.2.5 release (#84)
1 parent be7a2e3 commit d2f96a6

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 7 deletions
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](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [1.2.5] - 2023-09-03
99

1010
### Changed
1111
- Use safe casting in `PartialOrd` and `Ord` implementations in more cases when
@@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424
implementations. Safe methods used with the `safe` crate feature don't use
2525
recursive matches anymore, significantly improving the performance.
2626

27-
## [1.2.3] - 2023-08-23
27+
## [1.2.3] - 2023-08-23 [YANKED]
2828

2929
### Fixed
3030
- Don't use `Ord` in `PartialOrd` implementations if using any bounds.
@@ -37,12 +37,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3737
### Changed
3838
- `PartialOrd` implementations now use `Ord` if applicable.
3939

40-
## [1.2.1] - 2023-04-14
40+
## [1.2.1] - 2023-04-14 [YANKED]
4141

4242
### Fixed
4343
- Correctly handle raw identifiers in named fields.
4444

45-
## [1.2.0] - 2023-03-19
45+
## [1.2.0] - 2023-03-19 [YANKED]
4646

4747
### Changed
4848
- Updated `syn` to v2.
@@ -52,13 +52,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5252
- The `crate` attribute now takes a bare path instead of a path inside a string
5353
literal.
5454

55-
## [1.1.0] - 2023-02-06
55+
## [1.1.0] - 2023-02-06 [YANKED]
5656

5757
### Added
5858
- `incomparable` variant and item attribute for `PartialEq` and `PartialOrd`
5959
derives, yielding false on all comparisons but `!=`.
6060

61-
## [1.0.0] - 2022-07-16
61+
## [1.0.0] - 2022-07-16 [YANKED]
6262
- No changes.
6363

6464
## [1.0.0-rc.3] - 2022-03-21
@@ -88,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8888
### Added
8989
- Initial release.
9090

91-
[unreleased]: https://github.com/ModProg/derive-where/compare/v1.2.4...HEAD
91+
[unreleased]: https://github.com/ModProg/derive-where/compare/v1.2.5...HEAD
92+
[1.2.5]: https://github.com/ModProg/derive-where/compare/v1.2.4...v1.2.5
9293
[1.2.4]: https://github.com/ModProg/derive-where/compare/v1.2.3...v1.2.4
9394
[1.2.3]: https://github.com/ModProg/derive-where/compare/v1.2.2...v1.2.3
9495
[1.2.2]: https://github.com/ModProg/derive-where/compare/v1.2.1...v1.2.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "derive-where"
1515
readme = "README.md"
1616
repository = "https://github.com/ModProg/derive-where"
1717
rust-version = "1.57"
18-
version = "1.2.4"
18+
version = "1.2.5"
1919

2020
[lib]
2121
proc-macro = true

0 commit comments

Comments
 (0)