-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f87e86f
commit 31c0734
Showing
4 changed files
with
55 additions
and
4 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
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
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,40 @@ | ||
# Releasing | ||
|
||
1. Update the `VERSION_NAME` in `gradle.properties` to the release version. | ||
|
||
2. Update the `CHANGELOG.md`: | ||
|
||
3. Update the `README.md` so the "Download" section reflects the new release version and the | ||
snapshot section reflects the next "SNAPSHOT" version. | ||
|
||
4. Commit | ||
|
||
``` | ||
$ git commit -am "Prepare version X.Y.X" | ||
``` | ||
|
||
5. Publish | ||
|
||
``` | ||
$ ./gradlew clean publish | ||
``` | ||
6. Tag | ||
``` | ||
$ git tag -am "Version X.Y.Z" X.Y.Z | ||
``` | ||
7. Update the `VERSION_NAME` in `gradle.properties` to the next "SNAPSHOT" version. | ||
8. Commit | ||
``` | ||
$ git commit -am "Prepare next development version" | ||
``` | ||
9. Push! | ||
``` | ||
$ git push && git push --tags | ||
``` |
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