diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# v1.1.0.1
+
+Doc corrections.
+
+# v1.1.0.0
+
+## Breaking
+
+- Renamed `Notify` fields to match `postgresql-libpq` exactly: `relname` → `notifyRelname`, `bePid` → `notifyBePid`, `extra` → `notifyExtra`
+
 # v1.0.0.3
 
 Doc corrections.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@
 
 ## Testing model
 
-`pqi` comes accompanied by a comprehensive conformance suite isolated into an implementation-agnostic `pqi-conformance` package that covers various edge-cases and error conditions and covers most operations with a precondition that they must behave in exactly the same way that `postgresql-libpq` does.
+`pqi` comes accompanied by a conformance suite isolated into an implementation-agnostic `pqi-conformance` package that covers various edge-cases and error conditions and covers most operations with a precondition that they must behave in exactly the same way that `postgresql-libpq` does.
 
 ## Interface
 
diff --git a/pqi.cabal b/pqi.cabal
--- a/pqi.cabal
+++ b/pqi.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 name: pqi
-version: 1.0.0.3
+version: 1.1.0.1
 category: Database, PostgreSQL
 synopsis: Driver-agnostic interface to the PostgreSQL libpq API
 description:
diff --git a/src/library/Pqi.hs b/src/library/Pqi.hs
--- a/src/library/Pqi.hs
+++ b/src/library/Pqi.hs
@@ -218,9 +218,9 @@
 
 -- | An asynchronous notification, as returned by 'notifies'.
 data Notify = Notify
-  { relname :: ByteString,
-    bePid :: Int32,
-    extra :: ByteString
+  { notifyRelname :: ByteString,
+    notifyBePid :: Int32,
+    notifyExtra :: ByteString
   }
   deriving stock (Eq, Ord, Show)
 
@@ -235,7 +235,7 @@
   { -- | The status of the result.
     resultStatus :: IO ExecStatus,
     -- | The flat error message of the result, if any. Formatted locally by the
-    -- driver, so adapters are not expected to agree byte for byte; use
+    -- driver, so adapters are not expected to agree exactly; use
     -- 'resultErrorField' where exactness matters.
     resultErrorMessage :: IO (Maybe ByteString),
     -- | A single structured field of the result's error report.
@@ -339,7 +339,7 @@
     -- | The server version, as an integer of the form @MMmmpp@.
     serverVersion :: IO Int,
     -- | The most recent error message, if any. Formatted locally by the driver,
-    -- so adapters are not expected to agree byte for byte.
+    -- so adapters are not expected to agree exactly.
     errorMessage :: IO (Maybe ByteString),
     -- | The file descriptor of the connection socket.
     socket :: IO (Maybe Fd),
