diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -37,3 +37,7 @@
 ## 0.2.0.2 -- 2024-06-13
 
 * Cleanup testing and CI
+
+## 0.2.0.3 -- 2024-06-16
+
+* Improve testing compatibility (fix text breaking Stackage build)
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -9,9 +9,11 @@
 prioritize robustness in conditions defined in David H. Ackley's
 [Beyond Efficiency](https://www.cs.unm.edu/~ackley/be-201301131528.pdf).
 
-Note: This project is still under construction. The Library is 
-functional but I have yet to add much documentation and benchmarking.
-There's likely a lot of room for improvement in the code as well.
+Note: This project is still under construction. Everything works and according
+to my calculations will perform excellently under Ackley's testing conditions.
+Still to add: benchmarking to prove how cool it is, documentation 
+additions/revisions, memes. There's likely a lot of room for improvement in the
+code as well.
 
 ## Table of Contents
 
@@ -22,7 +24,7 @@
   - [Why Haskell?](#why-haskell)
 - [Project structure](#project-structure)
 - [Algorithms overview](#algorithms-overview)
-  - [Tensort](#tensort-1)
+  - [Tensort](#tensort)
     - [Preface](#preface)
     - [Structure](#structure)
     - [Algorithm](#algorithm)
diff --git a/tensort.cabal b/tensort.cabal
--- a/tensort.cabal
+++ b/tensort.cabal
@@ -20,7 +20,7 @@
 -- PVP summary:     +-+------- breaking API changes
 --                  | | +----- non-breaking API additions
 --                  | | | +--- code changes with no API change
-version:            0.2.0.2
+version:            0.2.0.3
 
 tested-with:        GHC==9.8.2, 
                     GHC==9.6.4, 
diff --git a/test/TestCheck.hs b/test/TestCheck.hs
--- a/test/TestCheck.hs
+++ b/test/TestCheck.hs
@@ -17,7 +17,7 @@
 --   ...exit with failure
 check :: (Testable prop) => prop -> IO ()
 check prop = do
-  result <- quickCheckResult (withDiscardRatio 2000 prop)
+  result <- quickCheckWithResult stdArgs {maxDiscardRatio = 2000} prop
   unless (isPass result) exitFailure
 
 -- | Returns True if a test passes, and False otherwise
