Skip to content

Commit 87a976b

Browse files
committed
Bump v1.3.0
1 parent 9136c8a commit 87a976b

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## To Be Released
4+
5+
## 1.3.0
6+
7+
* Merge with upstream
8+
* Migrate to Go modules

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# go-plugins-helpers
1+
# go-plugins-helpers v1.3.0
22

33
A 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

1313
See 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.

0 commit comments

Comments
 (0)