sqlite-simple 0.4.5.1 → 0.4.5.2
raw patch · 3 files changed
+9/−2 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- Database/SQLite/Simple.hs +1/−1
- changelog +7/−0
- sqlite-simple.cabal +1/−1
Database/SQLite/Simple.hs view
@@ -343,7 +343,7 @@ | otherwise -> errorColumnMismatch (ColumnOutOfBounds col) Errors [] -> throwIO $ ConversionFailed "" "" "unknown error" Errors [x] ->- throw x `catch` (\e -> errorColumnMismatch (e :: ColumnOutOfBounds))+ throw x `Control.Exception.catch` (\e -> errorColumnMismatch (e :: ColumnOutOfBounds)) Errors xs -> throwIO $ ManyErrors xs where errorColumnMismatch :: ColumnOutOfBounds -> IO r
changelog view
@@ -1,3 +1,10 @@+0.4.5.2+ * Build fix for GHC 7.4++0.4.5.1+ * Docs changes - uploaded new version to Hackage to update the+ Hackage page.+ 0.4.5.0 * Various improvements to documentation. Especially UTCTime
sqlite-simple.cabal view
@@ -1,5 +1,5 @@ Name: sqlite-simple-Version: 0.4.5.1+Version: 0.4.5.2 Synopsis: Mid-Level SQLite client library Description: Mid-level SQLite client library, based on postgresql-simple.