diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c1cf2a..81e085a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,12 @@ ## To Be Released -* chore(go): use go 1.17 +## 1.4.0 + +* chore(go): use go 1.23.5 +* build(deps): a lot of updates +* refactor: match Scalingo best practices +* Replace CodeShip with GitHub Actions ## 1.3.0 diff --git a/README.md b/README.md index b6b0671..097fa9d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# go-plugins-helpers v1.3.0 +# go-plugins-helpers v1.4.0 A collection of helper packages to extend Docker Engine in Go @@ -29,12 +29,21 @@ Bump new version number in: Commit, tag and create a new release: ```sh +version="1.4.0" + +git switch --create release/${version} git add CHANGELOG.md README.md -git commit -m "Bump v1.3.0" -git tag v1.3.0 -git push origin master -git push --tags -hub release create v1.3.0 +git commit --message="Bump v${version}" +git push --set-upstream origin release/${version} +gh pr create --reviewer=EtienneM --title "$(git log -1 --pretty=%B)" +``` + +Once the pull request merged, you can tag the new release. + +```sh +git tag v${version} +git push origin master v${version} +gh release create v${version} ``` The title of the release should be the version number and the text of the release is the same as the changelog.