File tree 4 files changed +14
-20
lines changed
4 files changed +14
-20
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ main ]
8
8
9
9
jobs :
10
- build :
10
+ test :
11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
14
ruby :
15
- - 2.6
16
- - 2.7
17
15
- 3.0
18
16
- 3.1
19
17
- 3.2
20
18
gemfile :
21
- - gemfiles/rails_5_2.gemfile
22
- - gemfiles/rails_6_0.gemfile
23
19
- gemfiles/rails_6_1.gemfile
24
20
- gemfiles/rails_7_0.gemfile
25
21
- gemfiles/ruby.gemfile
26
- exclude :
27
- - ruby : 3.2
28
- gemfile : gemfiles/rails_5_2.gemfile
29
- - ruby : 3.1
30
- gemfile : gemfiles/rails_5_2.gemfile
31
- - ruby : 3.0
32
- gemfile : gemfiles/rails_5_2.gemfile
33
- - ruby : 2.6
34
- gemfile : gemfiles/rails_7_0.gemfile
35
- name : Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
22
+ name : Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }} Tests
36
23
steps :
37
24
- uses : technote-space/auto-cancel-redundant-job@v1
38
25
if : github.event_name == 'pull_request'
39
26
- uses : actions/checkout@v2
40
27
- uses : ruby/setup-ruby@v1
28
+ env :
29
+ BUNDLE_GEMFILE : ${{ matrix.gemfile }}
41
30
with :
42
31
ruby-version : ${{ matrix.ruby }}
43
32
bundler-cache : true
44
33
- name : Build and test with Rake
45
34
env :
46
35
BUNDLE_GEMFILE : ${{ matrix.gemfile }}
47
36
run : |
48
- gem install bundler
49
- bundle install --jobs 4 --retry 3
50
37
bundle exec rake
Original file line number Diff line number Diff line change 1
- 2.7.5
1
+ 3.2.2
Original file line number Diff line number Diff line change @@ -9,10 +9,17 @@ and this project aims to adhere to [Semantic Versioning](http://semver.org/spec/
9
9
### Added
10
10
### Removed
11
11
12
+ ## [ 1.3.0] - 2023-07-18
13
+ ### Added
14
+ - Official support for Ruby 3.1 and 3.2
15
+ ### Removed
16
+ - Drops support for Rails < 6.1
17
+ - Drops support for Ruby < 3.0
18
+
12
19
## [ 1.2.0] - 2021-12-16
13
20
### Added
14
21
- Official support for Ruby 2.7 and 3.0
15
- - Official support for Rails 6.2 and 7.0
22
+ - Official support for Rails 6.1 and 7.0
16
23
### Removed
17
24
- Drops support for Rails < 5.2
18
25
- Drops support for Ruby < 2.6
Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ Gem::Specification.new do |s|
29
29
s . add_development_dependency "yard"
30
30
s . add_development_dependency "rails"
31
31
32
- s . required_ruby_version = ">= 2.6 .0"
32
+ s . required_ruby_version = ">= 3.0 .0"
33
33
end
You can’t perform that action at this time.
0 commit comments