diff --git a/Data/Void.hs b/Data/Void.hs index b43c89d..25ccfc8 100644 --- a/Data/Void.hs +++ b/Data/Void.hs @@ -49,7 +49,7 @@ vacuous = fmap absurd instance Semigroup Void where a <> _ = a - replicate1p _ a = a + times1p _ a = a instance Ix Void where range _ = [] diff --git a/void.cabal b/void.cabal index b774543..558868f 100644 --- a/void.cabal +++ b/void.cabal @@ -1,6 +1,6 @@ name: void category: Data Structures -version: 0.5.4.3 +version: 0.5.5 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE @@ -28,7 +28,7 @@ library Data.Void build-depends: base >= 3 && < 10, - semigroups >= 0.7.1 && < 0.8 + semigroups >= 0.8 && < 0.9 ghc-options: -Wall