Skip to content

Commit 9244c4d

Browse files
authored
Merge pull request #58 from Scalingo/release/1.4.0
Bump v1.4.0
2 parents b2cbc6e + f90cea6 commit 9244c4d

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
## To Be Released
44

5-
* chore(go): use go 1.17
5+
## 1.4.0
6+
7+
* chore(go): use go 1.23.5
8+
* build(deps): a lot of updates
9+
* refactor: match Scalingo best practices
10+
* Replace CodeShip with GitHub Actions
611

712
## 1.3.0
813

README.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-plugins-helpers v1.3.0
1+
# go-plugins-helpers v1.4.0
22

33
A collection of helper packages to extend Docker Engine in Go
44

@@ -29,12 +29,21 @@ Bump new version number in:
2929
Commit, tag and create a new release:
3030

3131
```sh
32+
version="1.4.0"
33+
34+
git switch --create release/${version}
3235
git add CHANGELOG.md README.md
33-
git commit -m "Bump v1.3.0"
34-
git tag v1.3.0
35-
git push origin master
36-
git push --tags
37-
hub release create v1.3.0
36+
git commit --message="Bump v${version}"
37+
git push --set-upstream origin release/${version}
38+
gh pr create --reviewer=EtienneM --title "$(git log -1 --pretty=%B)"
39+
```
40+
41+
Once the pull request merged, you can tag the new release.
42+
43+
```sh
44+
git tag v${version}
45+
git push origin master v${version}
46+
gh release create v${version}
3847
```
3948

4049
The title of the release should be the version number and the text of the release is the same as the changelog.

0 commit comments

Comments
 (0)