- Ensure
VERSION_NAMEingradle.propertiesis set to the version you want to release. - Add an entry in
CHANGELOG.mdwith the changes for the release. - Update
README.mdwith the version about to be released. Also update the RxJava version in this file to its latest. - Update the RxJava version in
rxandroid/build.gradleto its latest. (We tell people that we won't be tracking RxJava releases, and we don't, but we do it anyway when we are releasing for those who ignore the advice.) - Commit:
git commit -am "Prepare version X.Y.X" - Tag:
git tag -a X.Y.Z -m "Version X.Y.Z" - Update
VERSION_NAMEingradle.propertiesto the next development version. For example, if you just tagged version 1.0.4 you would set this value to 1.0.5. Do NOT append "-SNAPSHOT" to this value, it will be added automatically. - Commit:
git commit -am "Prepare next development version." - Push:
git push && git push --tags - Paste the
CHANGELOG.mdcontents for this version into a Release on GitHub along with the Groovy for depending on the new version (https://github.com/ReactiveX/RxAndroid/releases).