Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codez committed Sep 26, 2021
1 parent 43f27df commit b183759
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: ruby

rvm:
- "2.5.8"
- "2.7.2"
- "3.0.0"

sudo: false

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Delayed::Cron::Job

[![Build Status](https://travis-ci.org/codez/delayed_cron_job.svg)](https://travis-ci.org/codez/delayed_cron_job)
[![Build Status](https://app.travis-ci.com/codez/delayed_cron_job.svg?branch=master)](https://app.travis-ci.com/codez/delayed_cron_job)

Delayed::Cron::Job is an extension to Delayed::Job that allows you to set
cron expressions for your jobs to run repeatedly.
Expand Down Expand Up @@ -102,7 +102,7 @@ class NoonJob < CronJob
end
```

### Scheduling "trigger"
### Automatic Scheduling after db:migrate

Jobs with a `cron` definition are rescheduled automatically only when a job
instance finished its work. So there needs to be an initial scheduling of all
Expand Down
2 changes: 1 addition & 1 deletion lib/delayed_cron_job/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DelayedCronJob
VERSION = '0.7.4'
VERSION = '0.8.0'
end

0 comments on commit b183759

Please sign in to comment.