Skip to content

Commit

Permalink
Bump v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Feb 11, 2025
1 parent b2cbc6e commit f90cea6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit f90cea6

Please sign in to comment.