packages feed

ixset-typed 0.4.0.1 → 0.5

raw patch · 3 files changed

+12/−5 lines, 3 filesdep ~safecopydep ~template-haskell

Dependency ranges changed: safecopy, template-haskell

Files

CHANGELOG.md view
@@ -1,3 +1,10 @@+0.5 (2020-03-18)+================++- GHC 8.8 (and possibly 8.10) compatibility.++- safecopy-0.10 compatibility.+ 0.4.0.1 (2018-10-01) ==================== 
ixset-typed.cabal view
@@ -1,5 +1,5 @@ name:                ixset-typed-version:             0.4.0.1+version:             0.5 synopsis:            Efficient relational queries on Haskell sets. description:     This Haskell package provides a data structure of sets that are indexed@@ -26,7 +26,7 @@ build-type:          Simple cabal-version:       >= 1.10 extra-source-files:  CHANGELOG.md-tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1+tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1, GHC == 8.8.1  source-repository head   type:              git@@ -36,9 +36,9 @@   build-depends:     base             >= 4.9 && < 5,                      containers       >= 0.5 && < 1,                      deepseq          >= 1.3 && < 2,-                     safecopy         >= 0.8 && < 1,+                     safecopy         >= 0.8 && < 0.11,                      syb              >= 0.4 && < 1,-                     template-haskell >= 2.8 && < 2.15+                     template-haskell >= 2.8 && < 2.17    hs-source-dirs:    src   exposed-modules:
src/Data/IxSet/Typed.hs view
@@ -393,7 +393,7 @@ instance (Indexable ixs a, Read a) => Read (IxSet ixs a) where   readsPrec n = map (first fromSet) . readsPrec n -instance (Indexable ixs a, SafeCopy a) => SafeCopy (IxSet ixs a) where+instance (Indexable ixs a, Typeable ixs, SafeCopy a, Typeable a) => SafeCopy (IxSet ixs a) where   putCopy = contain . safePut . toList   getCopy = contain $ fmap fromList safeGet