From 3651251efe4a68845d055b61c6585628ea8929fa Mon Sep 17 00:00:00 2001 From: morimoto-cybozu Date: Fri, 6 Sep 2024 02:11:32 +0000 Subject: [PATCH] Bump version to 1.4.8 --- CHANGELOG.md | 5 ++++- RELEASE.md | 7 +++++-- version.go | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dd4442..3fc04e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.4.8] - 2024-09-06 + ### Changed - Update dependencies in [#86](https://github.com/cybozu-go/etcdpasswd/pull/86) @@ -136,7 +138,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). [placemat]: https://github.com/cybozu-go/placemat [etcdutil]: https://github.com/cybozu-go/etcdutil -[Unreleased]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.7...HEAD +[Unreleased]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.8...HEAD +[1.4.8]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.7...v1.4.8 [1.4.7]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.6...v1.4.7 [1.4.6]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.5...v1.4.6 [1.4.5]: https://github.com/cybozu-go/etcdpasswd/compare/v1.4.4...v1.4.5 diff --git a/RELEASE.md b/RELEASE.md index d12c084..d56d4df 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -44,7 +44,9 @@ Bump version 2. Make a branch to release ```console - $ git neco dev "bump-$VERSION" + $ git checkout main + $ git pull + $ git checkout -b "bump-$VERSION" ``` 3. Update `version.go`. @@ -53,7 +55,8 @@ Bump version ```console $ git commit -a -m "Bump version to $VERSION" - $ git neco review + $ git push -u origin HEAD + $ gh pr create -f ``` 6. Merge this branch. diff --git a/version.go b/version.go index 0e59bed..0e35973 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package etcdpasswd const ( // Version of etcdpasswd - Version = "1.4.7" + Version = "1.4.8" )