control-event 1.1.0.1 → 1.1.0.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Control/Event.hs +1/−1
- control-event.cabal +1/−1
Control/Event.hs view
@@ -181,7 +181,7 @@ evts <- readTVar (esEvents sys) let newMap :: Map UTCTime EventSet prev :: Maybe EventSet- (prev,newMap) = updateLookupWithKey (\_ (cnt, old) -> Just (cnt,delete num old)) clk evts+ (prev,newMap) = insertLookupWithKey (\_ _ (cnt, old) -> (cnt,delete num old)) clk undefined evts ret = case prev of Nothing -> False -- error "Canceling an event that never existed." Just (_,p) -> case lookup clk newMap of
control-event.cabal view
@@ -1,5 +1,5 @@ name: control-event-version: 1.1.0.1+version: 1.1.0.2 synopsis: Event scheduling system. description: Allows scheduling and canceling of IO actions to be executed at a specified future time.