Skip to content

Commit

Permalink
Merge pull request #53 from avanov/master
Browse files Browse the repository at this point in the history
Accumulated PR changes
  • Loading branch information
MichaelXavier authored Jan 21, 2024
2 parents 4e0db74 + 02918c8 commit d919330
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions cron.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -58,7 +58,7 @@ library
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
Expand Down
2 changes: 2 additions & 0 deletions src/System/Cron/Schedule.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

module System.Cron.Schedule
( Job (..)
, forkJob
, ScheduleError (..)
, Schedule
, ScheduleT (..)
Expand All @@ -49,6 +50,7 @@ module System.Cron.Schedule
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
Expand Down

0 comments on commit d919330

Please sign in to comment.