packages feed

timers-tick 0.1.0.2 → 0.1.1.0

raw patch · 3 files changed

+11/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Control.Timer.Tick: instance GHC.Generics.Generic (Control.Timer.Tick.TimedRes a)

Files

changes.txt view
@@ -1,3 +1,9 @@+0.1.1.0+-------++- Added Generic instance to TimedRes.+- Released on Thu 15 Mar 2018 00:27:26 CET.+ 0.1.0.2 ------- 
src/Control/Timer/Tick.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DeriveGeneric #-} -------------------------------------------------------------------------------- -- | -- Module      :  Control.Timer.Tick@@ -34,6 +35,8 @@         where +import GHC.Generics (Generic)+ ----------- -- TYPES -- -----------@@ -66,7 +69,7 @@                              tCurrTick :: Integer,                              tExpired  :: Bool                            }-        deriving (Show, Eq)+        deriving (Show, Eq, Generic)  type TimerStep a = (Integer, a) 
timers-tick.cabal view
@@ -1,5 +1,5 @@ name:                timers-tick-version:             0.1.0.2+version:             0.1.1.0 synopsis:            tick based timers description:         Tick-based timers and utilities, for games and                      discrete-time programs.