This repository was archived by the owner on Feb 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -5,24 +5,9 @@ All notable changes to this library are documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this library adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased] ( https://github.com/fluentassert/verify/compare/v1.0.0-rc.3 ...HEAD )
8+ ## [ Unreleased] ( https://github.com/fluentassert/verify/compare/v1.0.0...HEAD )
99
10- <!-- markdownlint-disable-next-line line-length -->
11- ## [ 1.0.0-rc.3] ( https://github.com/fluentassert/verify/releases/tag/v1.0.0-rc.3 ) - 2023-03-09
12-
13- ### Removed
14-
15- - Remove ` constraints ` package.
16-
17- <!-- markdownlint-disable-next-line line-length -->
18- ## [ 1.0.0-rc.2] ( https://github.com/fluentassert/verify/releases/tag/v1.0.0-rc.2 ) - 2023-02-24
19-
20- ### Changed
21-
22- - Rename ` NumberFloat ` to ` FluentNumber ` .
23-
24- <!-- markdownlint-disable-next-line line-length -->
25- ## [ 1.0.0-rc.1] ( https://github.com/fluentassert/verify/releases/tag/v1.0.0-rc.1 ) - 2022-10-22
10+ ## [ 1.0.0] ( https://github.com/fluentassert/verify/releases/tag/v1.0.0 ) - 2023-04-05
2611
2712This release contains breaking changes.
2813
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Create a pull request named `Release <version>` that does the following:
2626
27271 . Update the examples in [ README.md] ( README.md )
2828 and make sure the documentation is up to date.
29+
29302 . Update [ ` CHANGELOG.md ` ] ( CHANGELOG.md ) .
3031 - Change the ` Unreleased ` header to represent the new release.
3132 - Consider adding a description for the new release.
@@ -34,7 +35,16 @@ Create a pull request named `Release <version>` that does the following:
3435
3536## Release
3637
37- Create a GitHib Release named ` <version> ` with ` v<version> ` tag.
38+ 1 . Add and push a signed tag:
39+
40+ ``` sh
41+ TAG=' v<version>'
42+ COMMIT=' <commit-sha>'
43+ git tag -s -m $TAG $TAG $COMMIT
44+ git push upstream $TAG
45+ ```
46+
47+ 2 . Create a GitHib Release named ` <version> ` with ` v<version> ` tag.
3848
39- The release description should include all the release notes
40- from the [ ` CHANGELOG.md ` ] ( CHANGELOG.md ) for this release.
49+ The release description should include all the release notes
50+ from the [ ` CHANGELOG.md ` ] ( CHANGELOG.md ) for this release.
You can’t perform that action at this time.
0 commit comments