concurrent-supply 0.1.7 → 0.1.7.1
raw patch · 2 files changed
+4/−2 lines, 2 filesdep ~ghc-primPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ghc-prim
API changes (from Hackage documentation)
Files
concurrent-supply.cabal view
@@ -1,6 +1,6 @@ name: concurrent-supply category: Concurrency, Parallelism-version: 0.1.7+version: 0.1.7.1 license: BSD3 cabal-version: >= 1.10 license-file: LICENSE@@ -36,7 +36,7 @@ build-depends: base >= 4 && < 5, hashable >= 1.1 && < 1.3,- ghc-prim >= 0.2 && < 0.4+ ghc-prim >= 0.2 && < 0.5 test-suite properties type: exitcode-stdio-1.0
src/Control/Concurrent/Supply.hs view
@@ -41,8 +41,10 @@ import Data.Hashable import Data.IORef+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ < 710 import Data.Functor ((<$>)) import Data.Monoid+#endif import GHC.IO (unsafeDupablePerformIO, unsafePerformIO) import GHC.Types (Int(..)) import GHC.Prim (Int#)