diff --git a/CHANGELOG.md b/CHANGELOG.md index 11884f94..2218685c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ ## To be released -* chore(deps): bump github.com/looplab/fsm from 0.3.0 to 1.0.0 -* chore(deps): bump github.com/Scalingo/go-handlers from 1.6.0 to 1.7.0 +## [2023-12-27] v2.0.5 + +* chore(deps): various updates ## [2022-12-30] v2.0.4 diff --git a/README.md b/README.md index f75d2ffb..baa76633 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# LinK v2.0.4 +# LinK v2.0.5 ![publish workflow](https://github.com/Scalingo/link/actions/workflows/publish.yml/badge.svg) @@ -147,8 +147,18 @@ Bump new version number in: Commit, tag and create a new release: ```sh +version="2.0.5" + +git switch --create release/${version} git add CHANGELOG.md README.md -git commit -m "Bump v2.0.4" -git tag v2.0.4 -git push origin master v2.0.4 +git commit -m "Bump v${version}" +git push --set-upstream origin release/${version} +gh pr create --reviewer=EtienneM --fill-first +``` + +Once the pull request merged, you can tag the new release. + +```sh +git tag v${version} +git push origin master v${version} ```