-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions for how to release the library.
- Loading branch information
1 parent
fb73d78
commit f325feb
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Release process | ||
|
||
1. Commit any remaining changes and push. Wait for Travis build to come back green. | ||
2. Create Git tag with next version number: | ||
* for major changes (v1.0.0 to v2.0.0): `./gradlew reckonTagCreate -Preckon.scope=major -Preckon.stage=final` | ||
* for minor changes (v1.0.0 to v1.1.0): `./gradlew reckonTagCreate -Preckon.scope=minor -Preckon.stage=final` | ||
* for patches (v1.0.0 to v1.0.1): `./gradlew reckonTagCreate -Preckon.scope=patch -Preckon.stage=final` | ||
|
||
3. Push tag. Travis will automatically create GitHub release with binaries and push them to OSSRH | ||
(which will push them to Maven Central). | ||
4. Go to GitHub and add release notes / changelog to release. |