Contents
pgTAP Release Management
Here are the steps to take to make a release of pgTAP:
-
Review and fix any open bugs in the issue tracker.
-
Review and merge any appropriate pull requests.
-
Make sure that all tests pass on all supported versions of Postgres. If you want to run the tests manually, you can use the pgxn-utils Docker image or pgenv to install and switch between versions. For each version, ensure that:
-
Patches apply cleanly (try to eliminate Hunk warnings for patches to
pgtap.sqlitself, usually by fixing line numbers) -
All files are installed.
-
ALTER EXTENSION pgtap UPDATE;works. -
CREATE EXTENSION pgtap;works. -
All tests pass in
make installcheck.
-
-
If you’ve made any significant changes while testing versions backward, test them again in forward order (9.1, 9.2, 9.3, etc.) to make sure the changes didn’t break any later versions.
-
Review the documentation in
doc/pgtap.mmd, and make any necessary changes, including to the list of PostgreSQL version-compatibility notes at the end of the document. -
Add an item to the top of the
%changelogsection ofcontrib/pgtap.spec. It should use the version you’re about to release, as well as the date (usedate +'%a %b %d %Y') and your name and email address. Add at least one bullet mentioning the upgrade. -
Run
make html(you’ll need MultiMarkdown (Homebrew:brew install multimarkdown) in your path and the Pod::Simple::XHTML (Homebrew:brew install cpanm && cpanm Pod::Simple::XHTML) Perl module installed), then checkout thegh-pagesbranch and make these changes:-
cp .documentation.html.template documentation.html. Edit documentation.html, the main div should look like this:<div id="main"> <!-- DOCS INTRO HERE --> <!-- END DOCS INTRO HERE --> <div id="toc"> <!-- TOC SANS "pgTAP x.xx" --> <!-- END TOC --> </div> <!-- DOCS HERE, WITH INTRO MOVED ABOVE --> <!-- END DOCS --> </div> -
Copy the first
<h1>and<p>fromdoc/pgtap.htmlinto theDOCS INTRO HEREsection. -
Copy the rest of
doc/pgtap.htmlinto theDOCS HERE, WITH INTRO MOVED ABOVEsection. -
Copy the entire contents of
doc/toc.htmlinto theDOC SANS pgTAP x.xxsection, and then remove the first<li>element that says “pgTAP x.xx”. -
Review to ensure that everything looks right; use
git diffto make sure nothing important was lost. It should mainly be additions. -
Commit the changes, but don’t push them yet.
-
-
Go back to the
mainbranch and proofread the additions to theChangesfile since the last release. Make sure all relevant changes are recorded there, and that any typos or formatting errors are corrected. -
Timestamp the
Changesfile. I generate the timestamp like so:perl -MDateTime -e 'print DateTime->now->datetime . "Z\n"'Paste that into the line with the new version, maybe increment by a minute to account for the time you’ll need to actually do the release.
-
Commit the timestamp and push it:
git ci -m 'Timestamp v0.98.0.' git push -
Once again make sure all tests pass. Fix any that fail.
-
Once all tests pass, tag the release with its semantic version (including the leading
v) and push the tag.git tag -sm 'Tag v0.98.0.' v0.98.0 git push --tags -
Monitor the release workflow to make sure the new version is released on both PGXN and GitHub.
-
Push the
gh-pagesbranch:git push -
Increment the minor version to kick off development for the next release. The version should be added to the
Changesfile, and incremented in the following files:META.json(including for the three parts of theprovidessection)README.mdcontrib/pgtap.specdoc/pgtap.mmdpgtap.control
-
Commit that change and push it.
git ci -m 'Increment to v1.0.1.' git push -
Start hacking on the next version!