File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed
lib/delayed_job_chainable_hooks Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,15 @@ workflows:
2
2
build :
3
3
jobs :
4
4
- lint :
5
- ruby_version : " 2.7.2 "
5
+ ruby_version : " 2.7.7 "
6
6
- test :
7
7
matrix :
8
8
parameters :
9
9
ruby_version :
10
- - " 2.6.5"
11
- - " 2.7.2"
12
- - " 3.0.0"
10
+ - " 2.7.7"
11
+ - " 3.0.5"
12
+ - " 3.1.3"
13
+ - " 3.2.0"
13
14
version : 2.1
14
15
jobs :
15
16
lint :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ inherit_gem:
2
2
salsify_rubocop : conf/rubocop.yml
3
3
4
4
AllCops :
5
- TargetRubyVersion : 2.6
5
+ TargetRubyVersion : 2.7
6
6
Exclude :
7
7
# IntelliJ compile target directory
8
8
- ' out/**/*'
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6
6
7
7
## Unreleased
8
8
9
+ ## 3.0.0 - 2023-01-20
10
+ ### Changed
11
+ - Drop support for Ruby 2.6
12
+
9
13
## 2.0.0 - 2021-03-31
10
14
### Changed
11
15
- Require Ruby 2.6+
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
spec . bindir = 'bin'
32
32
spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
33
33
spec . require_paths = [ 'lib' ]
34
- spec . required_ruby_version = '>= 2.6 '
34
+ spec . required_ruby_version = '>= 2.7 '
35
35
36
36
spec . add_dependency 'activesupport' , '>= 5.2'
37
37
spec . add_dependency 'delayed_job' , '>= 4.1'
@@ -45,7 +45,7 @@ Gem::Specification.new do |spec|
45
45
spec . add_development_dependency 'rake' , '~> 13.0'
46
46
spec . add_development_dependency 'rspec' , '>= 3.8'
47
47
spec . add_development_dependency 'rspec_junit_formatter'
48
- spec . add_development_dependency 'salsify_rubocop' , '~> 1.0.2 '
48
+ spec . add_development_dependency 'salsify_rubocop' , '~> 1.43.0 '
49
49
spec . add_development_dependency 'simplecov'
50
50
spec . add_development_dependency 'sqlite3'
51
51
end
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module DelayedJobChainableHooks
4
- VERSION = '2 .0.0'
4
+ VERSION = '3 .0.0'
5
5
end
You can’t perform that action at this time.
0 commit comments