packages feed

hashtables 1.0.1.3 → 1.0.1.4

raw patch · 3 files changed

+6/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hashtables.cabal view
@@ -1,5 +1,5 @@ Name:                hashtables-Version:             1.0.1.3+Version:             1.0.1.4 Synopsis:            Mutable hash tables in the ST monad Homepage:            http://github.com/gregorycollins/hashtables License:             BSD3
src/Data/HashTable/Internal/Utils.hs view
@@ -253,15 +253,15 @@ --------------------------------------------------------------------} {-# INLINE shiftRL #-} shiftRL (W# x) (I# i)-  = W# (uncheckedShiftRL# x i)+  = W# (shiftRL# x i)  {-# INLINE iShiftL #-} iShiftL (I# x) (I# i)-  = I# (uncheckedIShiftL# x i)+  = I# (iShiftL# x i)  {-# INLINE iShiftRL #-} iShiftRL (I# x) (I# i)-  = I# (uncheckedIShiftRL# x i)+  = I# (iShiftRL# x i)  #else shiftRL x i   = shiftR x i
test/hashtables-test.cabal view
@@ -69,7 +69,7 @@                      primitive,                      QuickCheck                 >= 2.3.0.2,                      HUnit                      >= 1.2   && <2,-                     test-framework             >= 0.3.1 && <0.6,+                     test-framework             >= 0.3.1 && <0.7,                      test-framework-quickcheck2 >= 0.2.6 && <0.3,                      test-framework-hunit       >= 0.2.6 && <3,                      vector                     >= 0.7@@ -115,7 +115,7 @@                      mwc-random                 >= 0.8     && <0.13,                      QuickCheck                 >= 2.3.0.2 && <3,                      HUnit                      >= 1.2     && <2,-                     test-framework             >= 0.3.1   && <0.6,+                     test-framework             >= 0.3.1   && <0.7,                      test-framework-quickcheck2 >= 0.2.6   && <0.3,                      test-framework-hunit       >= 0.2.6   && <3,                      statistics                 >= 0.8     && <0.11,