File tree 2 files changed +21
-7
lines changed
2 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## To Be Released
4
4
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
6
11
7
12
## 1.3.0
8
13
Original file line number Diff line number Diff line change 1
- # go-plugins-helpers v1.3 .0
1
+ # go-plugins-helpers v1.4 .0
2
2
3
3
A collection of helper packages to extend Docker Engine in Go
4
4
@@ -29,12 +29,21 @@ Bump new version number in:
29
29
Commit, tag and create a new release:
30
30
31
31
``` sh
32
+ version=" 1.4.0"
33
+
34
+ git switch --create release/${version}
32
35
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}
38
47
```
39
48
40
49
The title of the release should be the version number and the text of the release is the same as the changelog.
You can’t perform that action at this time.
0 commit comments