bitset 1.4.3 → 1.4.4
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES +7/−0
- bitset.cabal +1/−1
- src/Data/BitSet/Generic.hs +1/−1
CHANGES view
@@ -3,6 +3,13 @@ Here you can see the full list of changes between each bitset release. +Version 1.4.4+-------------++Released on May 14th, 2013++- Fixed bug with wrong Eq instance.+ Version 1.4.3 -------------
bitset.cabal view
@@ -1,5 +1,5 @@ Name: bitset-Version: 1.4.3+Version: 1.4.4 Synopsis: A space-efficient set data structure. Description: A /bit set/ is a compact data structure, which maintains a set of members
src/Data/BitSet/Generic.hs view
@@ -101,7 +101,7 @@ deriving Typeable instance Eq (GBitSet c a) where- (==) = (==) `on` _n+ BitSet n1 b1 == BitSet n2 b2 = n1 == n2 && b1 == b2 instance Ord (GBitSet c a) where compare = compare `on` _n