Skip to content

Commit

Permalink
Prepare 4.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
albus522 committed Dec 29, 2017
1 parent 91f7889 commit c7a42fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
4.1.4 - 2017-12-29
=================
* Use `yaml_tag` instead of deprecated `yaml_as` (#996)
* Support ruby 2.5.0

4.1.3 - 2017-05-26
=================
* Don't mutate the options hash (#877)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**If you're viewing this at https://github.com/collectiveidea/delayed_job,
you're reading the documentation for the master branch.
[View documentation for the latest release
(4.1.3).](https://github.com/collectiveidea/delayed_job/tree/v4.1.3)**
(4.1.4).](https://github.com/collectiveidea/delayed_job/tree/v4.1.4)**

Delayed::Job
============
Expand Down Expand Up @@ -222,7 +222,7 @@ object.delay(:queue => 'high_priority', priority: 0).method
You can start processes to only work certain queues with the `queue` and `queues`
options defined below. Processes started without specifying a queue will run jobs
from **any** queue. To effectively have a process that runs jobs where a queue is not
specified, set a default queue name with `Delayed::Worker.default_queue_name` and
specified, set a default queue name with `Delayed::Worker.default_queue_name` and
have the processes run that queue.

Running Jobs
Expand Down
2 changes: 1 addition & 1 deletion delayed_job.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.summary = 'Database-backed asynchronous priority queue system -- Extracted from Shopify'
spec.test_files = Dir.glob('spec/**/*')
spec.version = '4.1.3'
spec.version = '4.1.4'
end

0 comments on commit c7a42fb

Please sign in to comment.