packages feed

HDBC 1.1.5 → 1.1.6

raw patch · 2 files changed

+4/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Database/HDBC/Statement.hs view
@@ -334,6 +334,8 @@                            "T" -> True                            "FALSE" -> False                            "F" -> False+                           "0" -> False+                           "1" -> True                            _ -> error $ "fromSql: cannot convert SqlString "                                          ++ show x ++ " to Bool"     fromSql (SqlByteString x) = (fromSql . SqlString . byteString2String) x
HDBC.cabal view
@@ -1,5 +1,5 @@ Name: HDBC-Version: 1.1.5+Version: 1.1.6 License: LGPL Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen@@ -22,7 +22,7 @@   description: Choose the new smaller, split-up base package. library   if flag(splitBase)-    Build-Depends: base>=3, old-time, bytestring, containers+    Build-Depends: base>=3 && < 4, old-time, bytestring, containers   else     Build-Depends: base<3   Build-Depends: mtl