The following guide walks you through releasing a new version of QUnit. If anything in the following process is found to be inaccurate or unclear, please update this document after you finish the release process so that future releases are easier.
Ensure that all requested changes have made it into the master
branch of the repo for the pending release. For patch releases, ensure all bug fixes have landed; for minor releases, ensure all features have been included. Major releases will likely have their own special checklist.
Next, checkout the current master
version of the repo and do the following:
- Install git-extras and run
git changelog
to updateHistory.md
. Clean up the changelog, removing merge commits, whitespace cleanups or other irrelevant commits. Refer to the formatting of previous entries when in doubt. - Run
grunt authors
and manually add any new authors toAUTHORS.txt
. The order of this list doesn't change, so you should compare starting at the end. - Update the version property in
package.json
to have the right-pre
version (e.g., if releasing version2.3.0
, the version should be2.3.0-pre
). This is not necessary for patch releases.
Commit all of the above with the following message:
Build: Prepare @VERSION release, including authors and history update
Replace @VERSION
with the version number you are releasing.
For the final preparatory step, push your new commit to master
on GitHub. In order to do this, you'll need to disable branch protections for administrators. This can be done here. Once you're done with the release process, be sure to reenable any protections you disabled.
For the actual release, we will use QUnit's fork of jquery-release.
Before attempting the process below, make sure you have the proper permissions to publish to the jQuery CDN or else you will run into issues. If you have any doubts, ask someone who has done a release before to verify for you.
Additionally, if you use 2FA on npm (which you should), make sure your account is in auth-only mode while doing the release. The release infrastructure does not currently support releasing with an OTP.
Always start this process from a fresh clone of the release repo:
git clone https://github.com/qunitjs/jquery-release.git
cd jquery-release
npm install
Then simply run the script:
node release.js --remote=qunitjs/qunit
Follow the prompts along the way and you should be all good. This process will create a new release and tag, push it to GitHub, and publish it to NPM, Bower, and the jQuery CDN.
You can verify all of the above were correctly published by using the following:
- Bower:
bower info qunit
- NPM:
npm view qunit
- CDN: visit
https://code.jquery.com/qunit/qunit-x.x.x.js
Additionally, we publish a new git
version of QUnit after every change, so we should verify that is still working. You can do so by visiting https://code.jquery.com/qunit/qunit-git.js
and ensuring the version number matches the latest -pre
version. Note that it may take a couple minutes for this version to update as the build happens.
Once you have successfully published the new release, we need to update the website.
As with QUnit itself, checkout the current master
version of the website repo, ensuring that any necessary updates for this release have made it into the code.
Next, do a find and replace of the previous version number and insert the new version number (excluding package.json
, it will be updated separately). Commit those changes with the following message:
All: Update url and version to @VERSION
Next, update the website version to the next logical number. Usually, this will be the same as @VERSION
, but occassionally the website will be a patch version ahead if a bug occurred in the website itself:
npm version @WEBSITE_VERSION
The above command will change the version in package.json
, commit it, and tag it. Next, just push the new version to master
:
git push --tags
It is important that you push the tag as that is what triggers a new website build and deployment.
Check the website in a few minutes after a build completes to verify it is updated.
If the website does not appear to be updating, you should check the Webhook to ensure a build was properly triggered. This can be done by going to the Webhook Settings and ensuring the two "builder" hooks are "green".
The QUnit API documentation is published automatically via GitHub Pages in the docs
directory of the main repository. Since it is published automatically after every change you do not need to do anything special during a release.
You're almost there! Make sure you update GitHub releases using the changelog from History.md
.
Finally, make an announcement on the @qunitjs Twitter account. Mention highlights of the release if possible and feel free to include a second tweet if needed, but be sure to include a link to the release notes like so:
Released @VERSION: https://github.com/qunitjs/qunit/releases/tag/x.x.x
That's it! If you made it this far, congratulations you have successfully released a new version fo QUnit!
Note: Remember to reset any branch protections or other settings changed during the release process.