diff --git a/hasql.cabal b/hasql.cabal
--- a/hasql.cabal
+++ b/hasql.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 name: hasql
-version: 1.8
+version: 1.8.0.1
 category: Hasql, Database, PostgreSQL
 synopsis: Fast PostgreSQL driver with a flexible mapping API
 description:
@@ -143,7 +143,7 @@
     iproute >=1.7 && <1.8,
     mtl >=2 && <3,
     postgresql-binary >=0.14 && <0.15,
-    postgresql-libpq ==0.10.1.0,
+    postgresql-libpq >=0.10.1 && <0.10.3,
     profunctors >=5.1 && <6,
     scientific >=0.3 && <0.4,
     text >=1 && <3,
diff --git a/library/Hasql/Errors.hs b/library/Hasql/Errors.hs
--- a/library/Hasql/Errors.hs
+++ b/library/Hasql/Errors.hs
@@ -84,7 +84,7 @@
               <> maybe "" (\h -> "\n  Hint: " <> BC.unpack h) hint
           UnexpectedResult message -> "Unexpected result: " <> show message
           RowError row column rowError ->
-            "Row error: " <> show row <> ":" <> show column <> " " <> show rowError
+            "Error in row " <> show row <> ", column " <> show column <> ": " <> show rowError
           UnexpectedAmountOfRows amount ->
             "Unexpected amount of rows: " <> show amount
 
