Skip to content

Commit 5b7c206

Browse files
Update maintainers_guide.md
1 parent 3dd100b commit 5b7c206

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/maintainers_guide.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,19 @@ Place `$HOME/.m2/settings.xml` with your Sonatype account information.
122122
* Run `scripts/release.sh` (it takes a bit long)
123123
* (If you encounter an error, log in https://oss.sonatype.org/ to check detailed information)
124124
* Create GitHub Release(s) and add release notes
125+
* Look at previous releases and follow their layouts; https://github.com/slackapi/java-slack-sdk/releases
125126
* Prepare a release note by `git log --pretty=format:'%h %s by %an' --abbrev-commit | grep -v "Merge pull request " | head -50`
126127
* `git add . -v && git commit -m'version (your version here)'`
127128
* `git tag v(your version here)`
128-
* `git push slackapi --tags`
129+
* `git push & git push --tags`
129130
* Open https://github.com/slackapi/java-slack-sdk/releases/new?tag=v${version}
130131
* (Slack Internal) Communicate the release internally. Include a link to the GitHub Release(s).
131132
* (Slack Internal) Tweet? Not necessary for patch updates, might be needed for minor updates, definitely needed for
132133
major updates. Include a link to the GitHub Release(s).
134+
* Anticipate the next version as a SNAPSHOT
135+
* `scripts/set_version.sh (next patch version)-SNAPSHOT` (e.g., `scripts/set_version.sh 1.0.1-SNAPSHOT`)
136+
* `git add . -v && git commit -m 'Start next version'`
137+
* `git push`
133138

134139
## Workflow
135140

0 commit comments

Comments
 (0)