timer-wheel 0.4.0 → 0.4.0.1
raw patch · 3 files changed
+7/−3 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +4/−0
- src/TimerWheel.hs +1/−1
- timer-wheel.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+## [0.4.0.1] - 2022-11-05++- Fix inaccurate haddock on `recurring`+ ## [0.4.0] - 2022-11-05 - Add `create`
src/TimerWheel.hs view
@@ -158,7 +158,7 @@ Wheel.insert wheel key delay action -- | @recurring wheel action delay@ registers an action __@action@__ in timer wheel __@wheel@__ to fire every--- __@delay@__ seconds (or every /resolution/ seconds, whichever is smaller).+-- __@delay@__ seconds. -- -- Returns an action that, when called, cancels the recurring timer. recurring ::
timer-wheel.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.0 name: timer-wheel-version: 0.4.0+version: 0.4.0.1 category: Data description: This library provides a timer wheel data structure for@@ -21,7 +21,7 @@ license: BSD3 license-file: LICENSE build-type: Simple-tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.1+tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2 extra-source-files: CHANGELOG.md