yeshql-hdbc 4.1.0.0 → 4.1.0.1
raw patch · 2 files changed
+4/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- tests/Database/HDBC/Mock.hs +3/−0
- yeshql-hdbc.cabal +1/−1
tests/Database/HDBC/Mock.hs view
@@ -50,6 +50,7 @@ , tryReadTChan , newTChanIO )+import Data.Semigroup data MockConnection = MockConnection@@ -161,6 +162,8 @@ mempty = anything mappend (Constraint a) (Constraint b) = Constraint (\x -> a x && b x)++instance Semigroup (Constraint a) where (<||>) :: Constraint a -> Constraint a -> Constraint a a <||> b = Constraint $ \x -> check a x || check b x
yeshql-hdbc.cabal view
@@ -1,5 +1,5 @@ name: yeshql-hdbc-version: 4.1.0.0+version: 4.1.0.1 synopsis: YesQL-style SQL database abstraction (HDBC backend) description: Use quasi-quotations or TemplateHaskell to write SQL in SQL, while adding type annotations to turn SQL into well-typed Haskell