diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.0.1
+
+- Expand version bounds to include tasty 1.3.
+
 # 0.1.0.0
 
 - Initial implementation.
diff --git a/junit-xml.cabal b/junit-xml.cabal
--- a/junit-xml.cabal
+++ b/junit-xml.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: d9e612dfa72967ec95cd316447a563846b10fe23377c8b6bd3410890c64ab56d
+-- hash: da921af1660cb968fd27fb14a85bb5264cf4ba37873600137376f5434834fd61
 
 name:           junit-xml
-version:        0.1.0.0
+version:        0.1.0.1
 synopsis:       Producing JUnit-style XML test reports.
 description:    Please see the README at <https://github.com/jwoudenberg/junit-xml>.
 category:       Web
@@ -52,6 +52,6 @@
   build-depends:
       base
     , junit-xml
-    , tasty >=1.1 && <1.3
+    , tasty >=1.1 && <1.4
     , tasty-golden >=2.3 && <2.4
   default-language: Haskell2010
diff --git a/src/Text/XML/JUnit.hs b/src/Text/XML/JUnit.hs
--- a/src/Text/XML/JUnit.hs
+++ b/src/Text/XML/JUnit.hs
@@ -197,7 +197,7 @@
 --           & 'stdout' "Running test..."
 --           & 'stderr' "Test failed: expected 3 slices of pizza but got one."
 --           & 'failureMessage' "Not enough pizza"
---           & 'failureStackTrace' ["Pizza", "Pizzeria", "Italy"]
+--           & 'failureStackTrace' ["pizza", "pizzeria", "italy"]
 --           & 'time' 0.08
 --           & 'inSuite' "Test suite"
 --       ]
@@ -222,7 +222,7 @@
 --           & 'stdout' "Running test..."
 --           & 'stderr' "Unexpected exception: BedTime"
 --           & 'errorMessage' "Operation canceled due to BedTimeOut"
---           & 'errorStackTrace' ["Bed", "Sleep", "Night"]
+--           & 'errorStackTrace' ["bed", "sleep", "night"]
 --           & 'time' 0.08
 --           & 'inSuite' "Test suite"
 --       ]
@@ -295,7 +295,7 @@
 --
 --     'writeXmlReport' "report.xml"
 --       [ failed "A failing test"
---           & failureStackTrace ["AnkleClass", "LegClass", "LimbClass"]
+--           & failureStackTrace ["ankleClass", "legClass", "limbClass"]
 --           & 'inSuite' "Test suite"
 --       ]
 -- @
@@ -324,7 +324,7 @@
 --
 --     'writeXmlReport' "report.xml"
 --       [ errored "A test that threw an error"
---           & errorMessage "TooMuchNetflixException"
+--           & errorMessage "Too much Netflix"
 --           & 'inSuite' "Test suite"
 --       ]
 -- @
