hasql-backend 0.1.0 → 0.2.0
raw patch · 2 files changed
+4/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
- Hasql.Backend: type Statement b = (ByteString, [StatementArgument b])
+ Hasql.Backend: type Statement b = (ByteString, [StatementArgument b], Bool)
Files
- hasql-backend.cabal +1/−1
- library/Hasql/Backend.hs +3/−2
hasql-backend.cabal view
@@ -1,7 +1,7 @@ name: hasql-backend version:- 0.1.0+ 0.2.0 synopsis: API for backends of "hasql" description:
library/Hasql/Backend.hs view
@@ -63,9 +63,10 @@ -- |--- A template statement with values for placeholders.+-- A statement template with values for placeholders+-- and a flag, defining, whether it is preparable. type Statement b =- (ByteString, [StatementArgument b])+ (ByteString, [StatementArgument b], Bool) class Backend b where