packages feed

swish 0.9.1.6 → 0.9.1.7

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Swish.VarBinding: boundVars :: Ord a => VarBinding a b -> Set a
+ Swish.VarBinding: boundVars :: (Ord a, Ord b) => VarBinding a b -> Set a

Files

CHANGELOG view
@@ -1,3 +1,7 @@+0.9.1.7:++  Turns out one of the constraints is needed by GHC 7.6.+ 0.9.1.6:    Updated dependencies to support GHC 8.0 (RC1) and updated the code to
src/Swish/VarBinding.hs view
@@ -114,8 +114,8 @@  -- |Return a list of the variables bound by a supplied variable binding ---boundVars :: Ord a => VarBinding a b -> S.Set a-boundVars = S.map fst . vbEnum+boundVars :: (Ord a, Ord b) => VarBinding a b -> S.Set a+boundVars = S.map fst . vbEnum  -- Ord b is needed got GHC 7.6  -- |VarBinding subset function, tests to see if one query binding --  is a subset of another;  i.e. every query variable mapping defined
swish.cabal view
@@ -1,5 +1,5 @@ Name:               swish-Version:            0.9.1.6+Version:            0.9.1.7 Stability:          experimental License:            LGPL License-file:       LICENSE