pqi 1.1.0.0 → 1.1.0.1
raw patch · 4 files changed
+8/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- README.md +1/−1
- pqi.cabal +1/−1
- src/library/Pqi.hs +2/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+# v1.1.0.1++Doc corrections.+ # v1.1.0.0 ## Breaking
README.md view
@@ -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
pqi.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: pqi-version: 1.1.0.0+version: 1.1.0.1 category: Database, PostgreSQL synopsis: Driver-agnostic interface to the PostgreSQL libpq API description:
src/library/Pqi.hs view
@@ -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),