stm-supply 0.1.0.0 → 0.2.0.0
raw patch · 3 files changed
+14/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- src/Control/Concurrent/STMSupply.hs +11/−0
- stm-supply.cabal +2/−2
- test/Spec.hs +1/−0
src/Control/Concurrent/STMSupply.hs view
@@ -1,3 +1,13 @@+{-|+Module : Control.Concurrent.STMSupply+Description : Main module+Copyright : (c) Joseph Canero, 2016+License : BSD-3+Maintainer : jmc41493@gmail.com+Stability : experimental+Portability : POSIX+-}+ module Control.Concurrent.STMSupply ( STMSupply@@ -6,6 +16,7 @@ , splitSupply ) where +import Control.Applicative import qualified Control.Concurrent.Supply as S import GHC.Conc
stm-supply.cabal view
@@ -1,7 +1,7 @@ name: stm-supply-version: 0.1.0.0+version: 0.2.0.0 synopsis: STM wrapper around Control.Concurrent.Supply.-description: Please see README.md+description: STM wrapper around Control.Concurrent.Supply for thread-safe ID generation. homepage: https://github.com/caneroj1/stm-supply#readme license: BSD3 license-file: LICENSE
test/Spec.hs view
@@ -2,6 +2,7 @@ module Main where +import Control.Applicative import Control.Concurrent.Async import Control.Concurrent.STMSupply import Control.Monad