From f7e234f9ed1f30b14b9da5c63e4cb3cf470231f5 Mon Sep 17 00:00:00 2001 From: Tomoki Sugiura Date: Thu, 9 Jan 2025 15:51:56 +0900 Subject: [PATCH] Update RELEASE.md remove git-neco commands add description of Chart update Signed-off-by: Tomoki Sugiura --- docs/release.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/release.md b/docs/release.md index 5bdd2a8..e1dbd45 100644 --- a/docs/release.md +++ b/docs/release.md @@ -40,20 +40,23 @@ It should look like: 2. Make a branch to release - ```console - $ git neco dev "bump-$VERSION" - ``` + ```console + $ git switch main + $ git pull origin main + $ git switch -c "bump-$VERSION" + ``` 3. Edit `CHANGELOG.md` for the new version ([example][]). -4. Commit the change and push it. +4. Edit `charts/tenet/Chart.yaml` for the new version ([example][]). +5. Commit the change and push it. ```console $ git commit -a -m "Bump version to $VERSION" - $ git neco review + $ gh pr create --fill --assignee @me ``` -5. Merge this branch. -6. Add a git tag to the main HEAD, then push it. +6. Merge this branch. +7. Add a git tag to the main HEAD, then push it. ```console # Set VERSION again. @@ -75,3 +78,4 @@ create a new GitHub release. [semver]: https://semver.org/spec/v2.0.0.html [example]: https://github.com/cybozu-go/etcdpasswd/commit/77d95384ac6c97e7f48281eaf23cb94f68867f79 +[example]: https://github.com/cybozu-go/tenet/pull/44/files