unbounded-delays 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+15/−5 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- README.markdown +6/−0
- unbounded-delays.cabal +9/−5
+ README.markdown view
@@ -0,0 +1,6 @@+The [threadDelay] and [timeout] functions from the `base` library use the+bounded `Int` type for specifying the delay or timeout period. This packages+provides alternatives which use the unbounded `Integer` type.++[threadDelay]: http://hackage.haskell.org/packages/archive/base/latest/doc/html/Control-Concurrent.html#v:threadDelay+[timeout]: http://hackage.haskell.org/packages/archive/base/latest/doc/html/System-Timeout.html#v:timeout
unbounded-delays.cabal view
@@ -1,5 +1,5 @@ name: unbounded-delays-version: 0.1.0.1+version: 0.1.0.2 cabal-version: >= 1.6 build-type: Custom author: Bas van Dijk <v.dijk.bas@gmail.com>@@ -9,19 +9,23 @@ copyright: 2011 Bas van Dijk & Roel van Dijk license: BSD3 license-file: LICENSE+homepage: https://github.com/basvandijk/unbounded-delays/+bug-reports: https://github.com/basvandijk/unbounded-delays/issues category: Concurrency synopsis: Unbounded thread delays and timeouts description: The @threadDelay@ and @timeout@ functions from the @base@ library use the bounded @Int@ type for specifying the delay or timeout period. This packages provides alternatives which use the unbounded @Integer@ type.- ++extra-source-files: README.markdown+ source-repository head- Type: darcs- Location: http://code.haskell.org/~basvandijk/code/unbounded-delays+ Type: git+ Location: git://github.com/basvandijk/unbounded-delays.git library- build-depends: base >= 4 && < 4.4+ build-depends: base >= 4 && < 4.5 exposed-modules: Control.Concurrent.Thread.Delay , Control.Concurrent.Timeout ghc-options: -Wall