reducers 3.0.0.1 → 3.0.0.2
raw patch · 3 files changed
+2/−4 lines, 3 filesdep ~comonaddep ~hashabledep ~keysPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: comonad, hashable, keys, pointed, semigroupoids
API changes (from Hackage documentation)
Files
reducers.cabal view
@@ -1,6 +1,6 @@ name: reducers category: Data, Math, Numerical, Semigroups-version: 3.0.0.1+version: 3.0.0.2 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE@@ -29,7 +29,7 @@ bytestring >= 0.9.1 && < 0.11, containers >= 0.3 && < 0.6, fingertree >= 0.0.1 && < 0.1,- hashable >= 1.1.2.1 && < 1.2,+ hashable >= 1.1.2.1 && < 1.3, text >= 0.11.1.5 && < 0.12, unordered-containers >= 0.1.4 && < 0.3, semigroups >= 0.8.3.1 && < 0.9,
src/Data/Semigroup/Reducer.hs view
@@ -105,7 +105,6 @@ ) instance Hashable Count where- hash = hash . getCount hashWithSalt n = hashWithSalt n . getCount instance Semigroup Count where
src/Data/Semigroup/Reducer/With.hs view
@@ -34,7 +34,6 @@ deriving (Eq, Ord, Show, Read) instance Hashable c => Hashable (WithReducer m c) where- hash = hash . withoutReducer hashWithSalt n = hashWithSalt n . withoutReducer instance Functor (WithReducer m) where