diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -77,6 +77,19 @@
 The man pages are also available [online](https://freckle.github.io/stackctl/),
 but contain documentation as of `main`, and not your installed version.
 
+## Release
+
+To trigger a release in this project, merge a commit to `main` with a
+conventionally-formatted commit message. In short, one that starts with:
+
+1. `fix:` to trigger a patch release,
+1. `feat:` for minor, or
+1. `feat!:` for major
+
+Conventional commits are not required generally for this project, though you're
+free to always use them. They are only required when you want to trigger a
+release.
+
 ## Comparison to AWS CloudFormation Git Sync
 
 [AWS CloudFormation Git Sync][aws-git-sync] was recently released by AWS. It
diff --git a/stackctl.cabal b/stackctl.cabal
--- a/stackctl.cabal
+++ b/stackctl.cabal
@@ -1,6 +1,6 @@
 cabal-version:   1.18
 name:            stackctl
-version:         1.7.2.0
+version:         1.7.3.0
 license:         MIT
 license-file:    LICENSE
 copyright:       2022 Renaissance Learning Inc
diff --git a/test/Stackctl/CancelHandlerSpec.hs b/test/Stackctl/CancelHandlerSpec.hs
--- a/test/Stackctl/CancelHandlerSpec.hs
+++ b/test/Stackctl/CancelHandlerSpec.hs
@@ -10,7 +10,7 @@
 spec :: Spec
 spec = do
   describe "with" $ do
-    fit "installs a handler for the duration of a block" $ example $ do
+    it "installs a handler for the duration of a block" $ example $ do
       done <- newEmptyMVar
 
       CancelHandler.install $ putMVar done ()
