Maintainer guide¶
Pre-release checks¶
The following should be tested minimally before a release is considered good to go:
- Ensure
releaseandstablebranches merged tomaster - Integration tests pass on a representative sample of platforms:
stack test --flag stack:integration-tests. The actual release script will perform a more thorough test for every platform/variant prior to uploading, so this is just a pre-check - Stack builds with
stack-7.8.yaml - stack can build the wai repo
- Running
stack builda second time on either stack or wai is a no-op - Build something that depends on
happy(suggestion:hlint), sincehappyhas special logic for moving around thedistdirectory - In release candidate branch:
- Bump the version number (to even second-to-last component) in the .cabal file
- Rename Changelog’s “unreleased changes” section to the version (check for any entries that snuck into the previous version’s changes)
- In master branch:
- Bump version to next odd second-to-last component
- Add new “unreleased changes” secion in changelog
- Bump to use latest LTS version
- Review documentation for any changes that need to be made
- Search for old Stack version, unstable stack version, and the next “obvious” version in sequence (if doing a non-obvious jump) and replace with new version
- Look for any links to “latest” documentation, replace with version tag
- Ensure to inter-doc links use
.htmlextension (not.md) - Ensure all documentation pages listed in
doc/index.rst
- Check that any new Linux distribution versions added to
etc/scripts/release.hsandetc/scripts/vagrant-releases.sh - Check that no new entries need to be added to releases.yaml, install_and_upgrade.md, and README.md
Release process¶
See stack-release-script’s README for requirements to perform the release, and more details about the tool.
- Create a
new draft Github release
with tag
vX.Y.Z(where X.Y.Z is the stack package’s version) - On each machine you’ll be releasing from, set environment variables:
GITHUB_AUTHORIZATION_TOKEN,AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY,AWS_DEFAULT_REGION - On a machine with Vagrant installed:
- Run
etc/scripts/vagrant-releases.sh
- Run
- On Mac OS X:
- Run
etc/scripts/osx-release.sh
- Run
- On Windows:
- Ensure your working tree is in
C:\stack(or a similarly short path) - Run
etc\scripts\windows-releases.bat - Build Windows installers. See https://github.com/borsboom/stack-installer#readme
- Ensure your working tree is in
- Push signed Git tag, matching Github release tag name, e.g.:
git tag -u 9BEFB442 vX.Y.Z && git push origin vX.Y.Z - Reset the
releasebranch to the released commit, e.g.:git checkout release && git merge --ff-only vX.Y.Z && git push origin release - Update the
stablebranch - Publish Github release
- Edit stack-setup-2.yaml, and add the new linux64 stack bindist
- Upload package to Hackage:
stack upload . --pvp-bounds=both - Activate version for new release tag on readthedocs.org, and ensure that stable documentation has updated
- On a machine with Vagrant installed:
- Run
etc/scripts/vagrant-distros.sh
- Run
- Update in Arch Linux’s
haskell-stack.git:
PKGBUILDand.SRCINFO* Be sure to resetpkgrelin both files, and update the SHA1 sum - Submit a PR for the
haskell-stack Homebrew formula
* Be sure to update the SHA sum
* The commit message should just be
haskell-stack <VERSION> - Build new MinGHC distribution
- Upload haddocks to Hackage, if hackage couldn’t build on its own
- Keep an eye on the Hackage matrix builder
- Announce to haskell-cafe@haskell.org, haskell-stack@googlegroups.com, commercialhaskell@googlegroups.com mailing lists
Extra steps¶
Upload haddocks to Hackage¶
- Set
STACKVERenvironment variable to the Stack version (e.g.0.1.10.0) - Run:
stack haddock
STACKDOCDIR=stack-$STACKVER-docs
rm -rf _release/$STACKDOCDIR
mkdir -p _release
cp -r $(stack path --local-doc-root)/stack-$STACKVER _release/$STACKDOCDIR
sed -i '' 's/href="\.\.\/\([^/]*\)\//href="..\/..\/\1\/docs\//g' _release/$STACKDOCDIR/*.html
(cd _release && tar cvz --format=ustar -f $STACKDOCDIR.tar.gz $STACKDOCDIR)
curl -X PUT \
-H 'Content-Type: application/x-tar' \
-H 'Content-Encoding: gzip' \
-u borsboom \
--data-binary "@_release/$STACKDOCDIR.tar.gz" \
"https://hackage.haskell.org/package/stack-$STACKVER/docs"
Update MinGHC¶
Full details of prerequisites and steps for building MinGHC are in its README. What follows is an abbreviated set specifically for including the latest stack version.
- Ensure
makensis.exeandsigntool.exeare on your PATH. - If you edit build-post-install.hs, run
stack exec -- cmd /c build-post-install.bat - Set
STACKVERenvironment variable to latest Stack verion (e.g.0.1.10.0) - Adjust commands below for new GHC versions
- Run:
stack build stack exec -- minghc-generate 7.10.2 --stack=%STACKVER% signtool sign /v /n "FP Complete, Corporation" /t "http://timestamp.verisign.com/scripts/timestamp.dll" .build\minghc-7.10.2-i386.exe stack exec -- minghc-generate 7.10.2 --arch64 --stack=%STACKVER% signtool sign /v /n "FP Complete, Corporation" /t "http://timestamp.verisign.com/scripts/timestamp.dll" .build\minghc-7.10.2-x86_64.exe stack exec -- minghc-generate 7.8.4 --stack=%STACKVER% signtool sign /v /n "FP Complete, Corporation" /t "http://timestamp.verisign.com/scripts/timestamp.dll" .build\minghc-7.8.4-i386.exe stack exec -- minghc-generate 7.8.4 --arch64 --stack=%STACKVER% signtool sign /v /n "FP Complete, Corporation" /t "http://timestamp.verisign.com/scripts/timestamp.dll" .build\minghc-7.8.4-x86_64.exe
- Upload the built binaries to a new Github release
- Edit README.md and update download links