mysql-simple 0.4.1.0 → 0.4.2.0
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Database/MySQL/Simple/Param.hs +1/−1
- mysql-simple.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.4.2.0++* Handle fractional seconds in parameter substitution (without affecting cases where only whole seconds are used). https://github.com/paul-rouse/mysql-simple/pull/40+ ## 0.4.1.0 * Add missing tuple instances of QueryResults (https://github.com/paul-rouse/mysql-simple/issues/9)
Database/MySQL/Simple/Param.hs view
@@ -190,7 +190,7 @@ {-# INLINE render #-} instance Param UTCTime where- render = Plain . Utf8.fromString . formatTime defaultTimeLocale "'%F %T'"+ render = Plain . Utf8.fromString . formatTime defaultTimeLocale "'%F %T%Q'" {-# INLINE render #-} instance Param Day where
mysql-simple.cabal view
@@ -1,5 +1,5 @@ name: mysql-simple-version: 0.4.1.0+version: 0.4.2.0 homepage: https://github.com/paul-rouse/mysql-simple bug-reports: https://github.com/paul-rouse/mysql-simple/issues synopsis: A mid-level MySQL client library.