diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for tasty-checklist
 
+## 1.0.10.0 -- 2926-06-22
+
+  * Fix to support GHC9.14 (doctests updated for new exception output format).
+
 ## 1.0.9.0 -- 2026-04-28
 
   * Update support for parameterized-utils to support version 2.3.
diff --git a/src/Test/Tasty/Checklist.hs b/src/Test/Tasty/Checklist.hs
--- a/src/Test/Tasty/Checklist.hs
+++ b/src/Test/Tasty/Checklist.hs
@@ -174,7 +174,8 @@
 -- >>>  check "7 is odd" odd (7 :: Int)
 -- >>> :}
 -- odd numbers: FAIL
---   Exception: ERROR: odds
+-- ...
+-- ... ERROR: odds
 --     2 checks failed in this checklist:
 --     -Failed check 'two is odd' with: 2
 --     -Failed check '7 + 3 is odd' with: 10
@@ -292,7 +293,8 @@
 --
 -- >>> defaultMain test
 -- someFun result: FAIL
---   Exception: ERROR: results for someFun
+-- ...
+-- ... ERROR: results for someFun
 --     3 checks failed in this checklist:
 --     --- Input for below: The answer to the universe is 18?
 --     -Failed check: foo
diff --git a/tasty-checklist.cabal b/tasty-checklist.cabal
--- a/tasty-checklist.cabal
+++ b/tasty-checklist.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               tasty-checklist
-version:            1.0.9.0
+version:            1.0.10.0
 synopsis:           Check multiple items during a tasty test
 description:
    Allows the test to check a number of items during a test and
