Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 461846f

Browse files
authored
Release 1.0.0 (#103)
1 parent af70ccc commit 461846f

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

CHANGELOG.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,9 @@ All notable changes to this library are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

2712
This release contains breaking changes.
2813

CONTRIBUTING.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Create a pull request named `Release <version>` that does the following:
2626

2727
1. Update the examples in [README.md](README.md)
2828
and make sure the documentation is up to date.
29+
2930
2. 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.

0 commit comments

Comments
 (0)