diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog for safe-coloured-text-layout-gen
 
+## [0.0.0.2] - 2026-07-24
+
+### Changed
+
+* Reformatted the test suite; no functional changes.
+
 ## [0.0.0.1] - 2024-08-03
 
 ### Changed
diff --git a/safe-coloured-text-layout-gen.cabal b/safe-coloured-text-layout-gen.cabal
--- a/safe-coloured-text-layout-gen.cabal
+++ b/safe-coloured-text-layout-gen.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.36.0.
+-- This file has been generated from package.yaml by hpack version 0.38.3.
 --
 -- see: https://github.com/sol/hpack
 
 name:           safe-coloured-text-layout-gen
-version:        0.0.0.1
+version:        0.0.0.2
 description:    Generators for types in safe-coloured-text-layout
 homepage:       https://github.com/NorfairKing/safe-coloured-text#readme
 bug-reports:    https://github.com/NorfairKing/safe-coloured-text/issues
diff --git a/test/Text/Colour/LayoutSpec.hs b/test/Text/Colour/LayoutSpec.hs
--- a/test/Text/Colour/LayoutSpec.hs
+++ b/test/Text/Colour/LayoutSpec.hs
@@ -55,8 +55,7 @@
         ( renderChunksText
             With24BitColours
             ( renderTable $
-                ( table $ [[[chunk (T.pack (show (x + y)))] | x <- [0 :: Int .. 9]] | y <- [0 :: Int .. 9]]
-                )
+                (table $ [[[chunk (T.pack (show (x + y)))] | x <- [0 :: Int .. 9]] | y <- [0 :: Int .. 9]])
                   { tableColumnSeparator = "@"
                   }
             )
@@ -67,8 +66,7 @@
         ( renderChunksText
             With24BitColours
             ( renderTable $
-                ( table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]]
-                )
+                (table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]])
                   { tableBackground = Just (SingleColour black)
                   }
             )
@@ -79,8 +77,7 @@
         ( renderChunksText
             With24BitColours
             ( renderTable $
-                ( table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]]
-                )
+                (table $ [[[fore red $ chunk (T.pack (show (x ^ y)))] | x <- [0 :: Int .. 4]] | y <- [0 :: Int .. 4]])
                   { tableBackground = Just (Bicolour (Just black) (Just brightBlack))
                   }
             )
