Skip to content

Commit 24e2406

Browse files
author
TP Honey
committed
(maint) release prep v1.4.1
1 parent 33272b3 commit 24e2406

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.github_changelog_generator

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
since-tag=v1.4.0

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## [v1.4.1](https://github.com/drone-plugins/drone-slack/tree/v1.4.1) (2021-11-09)
4+
5+
[Full Changelog](https://github.com/drone-plugins/drone-slack/compare/v1.4.0...v1.4.1)
6+
7+
**Closed issues:**
8+
9+
- \[feature\] Allow template to be read from a file [\#122](https://github.com/drone-plugins/drone-slack/issues/122)
10+
- Newlines not working in message template [\#113](https://github.com/drone-plugins/drone-slack/issues/113)
11+
12+
13+
14+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,25 @@ docker run --rm \
5050
-e DRONE_TAG=1.0.0 \
5151
plugins/slack
5252
```
53+
54+
## Release Preparation
55+
56+
Run the changelog generator.
57+
58+
```BASH
59+
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-slack -t <secret github token>
60+
```
61+
62+
You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.
63+
64+
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.
65+
66+
**Before moving on make sure to update the version file `version/version.go && version/version_test.go`.**
67+
68+
Run the changelog generator again with the future version according to semver.
69+
70+
```BASH
71+
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone-plugins -p drone-slack <secret token> --future-release v1.0.0
72+
```
73+
74+
Create your pull request for the release. Get it merged then tag the release.

0 commit comments

Comments
 (0)