forked from scala-ide/scalariform
-
Notifications
You must be signed in to change notification settings - Fork 31
Release process
Daniel Trinh edited this page Apr 8, 2015
·
27 revisions
Edit ~/.sbt/sonatype.sbt:
credentials += Credentials("Sonatype Nexus Repository Manager",
"oss.sonatype.org",
"mattrussell",
"XXXXXXXX")
Edit ~/.m2/settings.xml: sonatype-nexus-snapshots mattrussell XXXXXXX sonatype-nexus-staging mattrussell XXXXXXXXX
Also create a GPG key and upload it:
gpg gen-key
gpg --list-keys
gpg --keyserver hkp://keyserver.ubuntu.com --send-keys 8412D1BB
export FROM=0.1.1
export TO=0.1.2
export NEW=0.1.3
sed -i s/$FROM/$TO/g README.rst
- Add date to CHANGELOG.
- Create
scalariform/notes/$TO.markdown
, check at http://www.ctrlshift.net/project/markdowneditor/ - Check tests locally.
- Do a deploy-local against Scala 2.9.2 and then check that the Maven plugin compiles (change the version in plugin pom.xml)
- See if there any new Scala build versions to add
git add .
git commit -a -m "Preparing for $TO release"
git checkout -b $TO
scripts/update-version.sh $TO-SNAPSHOT $TO
git grep -n $TO-SNAPSHOT # $FROM etc
git commit -a -m "Update versions for $TO release"
(May need to up -XX:ReservedCodeCacheSize=)
sbt
> +test
> project scalariform
> +publish-signed
Close and then release at: https://oss.sonatype.org/index.html#stagingRepositories (username = mattrussell)
Check at https://oss.sonatype.org/content/groups/public/org/scalariform/
sbt "project cli" "assembly"
Then upload to:
https://github.com/daniel-trinh/scalariform/downloads
git push -u origin $TO
git co master
scripts/update-version.sh $TO-SNAPSHOT $NEW-SNAPSHOT
scripts/update-version.sh $TO.qualifier $NEW.qualifier
git commit -a -m "Update versions for $NEW-SNAPSHOT"
Then close, release at https://oss.sonatype.org/index.html#stagingRepositories
- Home - Overview of Scalariform
- Command-line tool
- Maven plugin
- Library
- Formatter preferences