cron 0.7.0 → 0.7.1
raw patch · 3 files changed
+6/−2 lines, 3 filesdep ~textPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: text
API changes (from Hackage documentation)
+ System.Cron.Schedule: forkJob :: Job -> IO ThreadId
Files
- changelog +2/−0
- cron.cabal +2/−2
- src/System/Cron/Schedule.hs +2/−0
changelog view
@@ -1,3 +1,5 @@+# 0.7.1+* expose fork job, Jappie Klooster (@jappeace) # 0.7.0 * Fix time parsing error (#41), Julien Debon (@Sir4ur0n) # 0.6.2
cron.cabal view
@@ -1,5 +1,5 @@ Name: cron-Version: 0.7.0+Version: 0.7.1 Description: Cron data structure and Attoparsec parser. The idea is to embed it in larger systems which want to roll their own scheduled tasks in a format that people@@ -58,7 +58,7 @@ default-language: Haskell2010 build-depends: base >= 4 && < 5 , attoparsec >= 0.10- , text >= 0.11 && < 2+ , text >= 0.11 && < 3 , time >= 1.4 , old-locale >= 1.0 , mtl >= 2.0.1
src/System/Cron/Schedule.hs view
@@ -31,6 +31,7 @@ module System.Cron.Schedule ( Job (..)+ , forkJob , ScheduleError (..) , Schedule , ScheduleT (..)@@ -49,6 +50,7 @@ import Control.Applicative #endif import Control.Concurrent+import Control.Monad (forever, when, void) import Control.Monad.Except import Control.Monad.Identity import Control.Monad.State