File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## To Be Released
4+
5+ ## 1.3.0
6+
7+ * Merge with upstream
8+ * Migrate to Go modules
Original file line number Diff line number Diff line change 1- # go-plugins-helpers
1+ # go-plugins-helpers v1.3.0
22
33A collection of helper packages to extend Docker Engine in Go
44
@@ -11,3 +11,23 @@ A collection of helper packages to extend Docker Engine in Go
1111 Graph (experimental) | [ Link] ( https://github.com/docker/cli/blob/master/docs/extend/plugins_graphdriver.md ) | Extend image and container fs storage
1212
1313See the [ understand Docker plugins documentation section] ( https://docs.docker.com/engine/extend/plugins/ ) .
14+
15+ ### Release a New Version
16+
17+ Bump new version number in:
18+
19+ - ` CHANGELOG.md `
20+ - ` README.md `
21+
22+ Commit, tag and create a new release:
23+
24+ ``` sh
25+ git add CHANGELOG.md README.md
26+ git commit -m " Bump v1.3.0"
27+ git tag v1.3.0
28+ git push origin master
29+ git push --tags
30+ hub release create v1.3.0
31+ ```
32+
33+ 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