-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): prepare for v1.0.0 release (#97)
- Loading branch information
Showing
4 changed files
with
31 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/) | ||
|
||
## [Unreleased] | ||
|
||
## [1.0.0] | ||
|
||
First stable release | ||
|
||
[Unreleased]: https://github.com/UpCloudLtd/upcloud-csi/compare/v1.0.0...HEAD | ||
[1.0.0]: https://github.com/UpCloudLtd/upcloud-csi/releases/tag/1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Releasing | ||
|
||
1. Merge all your changes to the stable branch | ||
3. Update CHANGELOG.md | ||
1. Add new heading with the correct version e.g. `## [1.0.1]` | ||
2. Update links at the bottom of the page | ||
3. Leave `## Unreleased` section at the top empty | ||
5. Test GoReleaser config with `goreleaser check` | ||
6. Tag a commit with the version you want to release e.g. `v1.2.0` | ||
7. Push the tag & commit to GitHub | ||
- GitHub action automatically | ||
- sets the version based on the tag | ||
- creates a draft release to GitHub | ||
8. Verify that [release notes](https://github.com/UpCloudLtd/upcloud-csi/releases) are in line with `CHANGELOG.md` | ||
9. Publish the drafted release |