diff --git a/CHANGELOG.md b/CHANGELOG.md index 51e2dcf0e..9d8f3c37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +4.1.10 - 2022-01-17 +=================== +* Support for Rails 7.0. NOTE: If you are using Delayed Job independent of Rails, Active Support 7 has dropped classic dependency autoloading. You will need to add and setup zeitwerk for autoloading to continue working in ActiveSupport 7. + 4.1.9 - 2020-12-09 ================== * Support for Rails 6.1 diff --git a/README.md b/README.md index 29ad10782..c72ed2f6f 100644 --- a/README.md +++ b/README.md @@ -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.9).](https://github.com/collectiveidea/delayed_job/tree/v4.1.9)** +(4.1.10).](https://github.com/collectiveidea/delayed_job/tree/v4.1.10)** Delayed::Job ============ diff --git a/delayed_job.gemspec b/delayed_job.gemspec index a61fe4717..ee290405e 100644 --- a/delayed_job.gemspec +++ b/delayed_job.gemspec @@ -13,7 +13,7 @@ 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.9' + spec.version = '4.1.10' spec.metadata = { 'changelog_uri' => 'https://github.com/collectiveidea/delayed_job/blob/master/CHANGELOG.md', 'bug_tracker_uri' => 'https://github.com/collectiveidea/delayed_job/issues',