Skip to content

Commit 0244fdb

Browse files
committed
bump to version 20.10.9:
1 parent 28105d0 commit 0244fdb

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [v20.10.9](https://github.com/drone-plugins/drone-docker/tree/v20.10.9) (2021-11-02)
4+
5+
[Full Changelog](https://github.com/drone-plugins/drone-docker/compare/v19.03.9...v20.10.9)
6+
7+
**Merged pull requests:**
8+
9+
- Upgrade Docker dind to 20.10.9 for 64bit platforms [\#334](https://github.com/drone-plugins/drone-docker/pull/334) ([gzm0](https://github.com/gzm0))
10+
311
## [v19.03.9](https://github.com/drone-plugins/drone-docker/tree/v19.03.9) (2021-10-13)
412

513
[Full Changelog](https://github.com/drone-plugins/drone-docker/compare/v19.03.8...v19.03.9)
@@ -17,6 +25,8 @@
1725

1826
**Merged pull requests:**
1927

28+
- \(maint\) bump git to 1.13 for build and test [\#338](https://github.com/drone-plugins/drone-docker/pull/338) ([tphoney](https://github.com/tphoney))
29+
- \(maint\) v19.03.9 release prep [\#337](https://github.com/drone-plugins/drone-docker/pull/337) ([tphoney](https://github.com/tphoney))
2030
- \(maint\) CI, remove the dry run steps, due to rate limiting [\#323](https://github.com/drone-plugins/drone-docker/pull/323) ([tphoney](https://github.com/tphoney))
2131
- Update seccomp to 20.10 docker [\#322](https://github.com/drone-plugins/drone-docker/pull/322) ([techknowlogick](https://github.com/techknowlogick))
2232

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,23 @@ docker run --rm \
7272
--privileged \
7373
plugins/docker --dry-run
7474
```
75+
76+
## Release procedure
77+
78+
Run the changelog generator.
79+
80+
```BASH
81+
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-docker -t <secret github token>
82+
```
83+
84+
You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.
85+
86+
Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.
87+
88+
Run the changelog generator again with the future version according to semver.
89+
90+
```BASH
91+
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-docker -t <secret token> --future-release v1.0.0
92+
```
93+
94+
Create your pull request for the release. Get it merged then tag the release.

0 commit comments

Comments
 (0)