clocked 0.4.1.2 → 0.4.1.3
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~clockPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: clock
API changes (from Hackage documentation)
Files
- clocked.cabal +2/−2
- src/Clocked/Common.hs +1/−1
clocked.cabal view
@@ -1,5 +1,5 @@ Name: clocked-Version: 0.4.1.2+Version: 0.4.1.3 Synopsis: timer functionality to clock IO commands Description: clocked is a library that allows you to clock IO-operations. You can use it to clock the rendering of frames, the calculation of steps in a physics engine, the triggering of musical events in a real-time system, etc. Homepage: http://patch-tag.com/r/shahn/clocked/home@@ -44,7 +44,7 @@ containers if !os(darwin) build-depends:- clock == 0.2.0.0+ clock >= 0.3 if os(darwin) build-depends: time
src/Clocked/Common.hs view
@@ -18,7 +18,7 @@ import Control.Applicative ((<$>)) -import System.Posix.Clock+import System.Clock -- | returns a monotonic time in seconds getTimeDouble :: IO Double