mssql-simple 0.6.0.4 → 0.6.0.5
raw patch · 3 files changed
+10/−2 lines, 3 filesdep +transformersPVP ok
version bump matches the API change (PVP)
Dependencies added: transformers
API changes (from Hackage documentation)
Files
- mssql-simple.cabal +4/−2
- src/Database/MSSQLServer/Query/ResultSet.hs +3/−0
- src/Database/MSSQLServer/Query/RpcResponseSet.hs +3/−0
mssql-simple.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.1.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack name: mssql-simple-version: 0.6.0.4+version: 0.6.0.5 synopsis: SQL Server client library implemented in Haskell description: Please see the README on GitHub at <https://github.com/mitsuji/mssql-simple#readme> category: Database@@ -52,6 +52,7 @@ , text , time , tls+ , transformers , uuid-types default-language: Haskell2010 @@ -76,5 +77,6 @@ , text , time , tls+ , transformers , uuid-types default-language: Haskell2010
src/Database/MSSQLServer/Query/ResultSet.hs view
@@ -21,6 +21,9 @@ #if MIN_VERSION_mtl(2,2,1) import Control.Monad.Except+#if MIN_VERSION_mtl(2,3,0)+import Control.Monad.Trans.Class (lift)+#endif #else import Control.Monad.Error #endif
src/Database/MSSQLServer/Query/RpcResponseSet.hs view
@@ -24,6 +24,9 @@ #if MIN_VERSION_mtl(2,2,1) import Control.Monad.Except+#if MIN_VERSION_mtl(2,3,0)+import Control.Monad.Trans.Class (lift)+#endif #else import Control.Monad.Error runExceptT = runErrorT