The release process has only been tested on Linux. The following tools must be installed.
~/.m2/settings.xml will need the following entries.
<settings>
<servers>
<server>
<id>sonatype-nexus-snapshots</id>
<username>...</username>
<password>...</password>
</server>
<server>
<id>sonatype-nexus-staging</id>
<username>...</username>
<password>...</password>
</server>
<server>
<id>aurelius.s3</id>
<username>AWS Key ID</username>
<password>AWS Secret Key</password>
</server>
</servers>
</settings>
Update version-sensitive files in the root and documentation sources in the docs/ subdirectory off the root.
Documentation pages:
- changelog.txt
- versions.txt
- upgrade.txt
- acknowledgements.txt
Files in the main repo:
- CHANGELOG.asc
- NOTICE.txt
- UPGRADE.asc
- titan-site/src/site-resources/index.html (this template generates a new http://thinkaurelius.github.io/titan/)
Some of these updates could potentially be automated, but tweaking documentation before a release will always require at least human in the loop.
Commit or stash any uncommitted changes.
Recommended but not required:
- Delete untracked files and directories in the clone by running
git clean -fd
# This script does several things.
#
# * Prompts for a ${titan.compatible.versions} update
# * Locally commits the release using the release plugin
# * Deploys Maven artifacts to Sonatype OSS (staging, not released yet)
# * Uploads zipfiles to S3
# * Locally commits gh-pages updates (index.html and javadocs)
# * Uploads AsciiDoc-generated documentation to S3
#
# Although it uploads to Sonatype OSS Staging and S3, it does
# not push to github nor does it release the Sonatype repo.
# This step is still essentially reversible: just destroy the
# local commit history, drop the Sonatype OSS Staging repo, and
# delete the files uploaded to S3.
titan-dist/src/release/release.sh
This is a good time to inspect the archives just uploaded to http://s3.thinkaurelius.com/downloads/titan/. Directory listing is normally disabled on that directory, so you may need to login to the S3 console to list the contents and check that nothing's out of place.
If S3 looks good, then inspect and close the staging repository that the deploy phase automatically created on https://oss.sonatype.org/.
This is the point of no return. After releasing artifacts to Maven Central and pushing history to the public Github repo, the release can't be canceled.
Release the Sonatype OSS repository that you inspected and closed earlier. It will appear on Maven Central in an hour or two.
Finally, push your local changes to Github:
# cd to the titan repository root if not already there
git push origin $BRANCH_NAME
git push origin refs/tags/$RELEASE_VERSION
git push origin gh-pages
Update these pages on the Github wiki:
- Home
- Downloads
To kickoff the next round of development, deploy a copy of the new SNAPSHOT version's artifacts to the Sonatype OSS snapshots repository.
# From the repository root
git checkout $BRANCH_NAME
mvn clean deploy