File tree 4 files changed +13
-10
lines changed
4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,12 @@ language: ruby
2
2
sudo : false
3
3
cache : bundler
4
4
rvm :
5
- - 2.6.7
6
- - 2.7.3
7
- - 3.0.1
5
+ - 2.7.5
6
+ - 3.0.3
8
7
9
8
before_install :
10
9
- gem update bundler
11
10
12
11
env :
13
- - ' TEST_RAILS_VERSION="~> 6.0.3"'
14
12
- ' TEST_RAILS_VERSION="~> 6.1.0"'
13
+ - ' TEST_RAILS_VERSION="~> 7.0.0.rc1"'
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Unreleased
3
+ ## 5.0.0
4
4
5
- * Test against Rails 6.1.
5
+ * Add support for Rails 7.
6
+ * Test against Rails 6.1 and Rails 7.0.
6
7
* Test against Ruby 3.0.
7
8
* Rails 5.1 is not supported officially anymore (but should still work fine).
8
- * Ruby 2.5 is not supported anymore (has reached end of life).
9
+ * Ruby < 2.7 is not supported anymore (has reached end of life) but should still work .
9
10
10
11
## 4.5.0 (21-Sep-20)
11
12
Original file line number Diff line number Diff line change @@ -24,15 +24,18 @@ Gem::Specification.new do |s|
24
24
s . add_development_dependency 'rake' , '~> 13.0'
25
25
s . add_development_dependency 'test-unit' , '~> 3.2'
26
26
if ENV [ 'TEST_RAILS_VERSION' ] . nil?
27
- s . add_development_dependency 'rails' , '6.1.4.1 '
27
+ s . add_development_dependency 'rails' , '7.0.0.rc1 '
28
28
else
29
29
s . add_development_dependency 'rails' , ENV [ 'TEST_RAILS_VERSION' ] . to_s
30
30
end
31
31
32
- s . add_runtime_dependency 'railties' , '>= 3' , '< 7 '
32
+ s . add_runtime_dependency 'railties' , '>= 3' , '< 8 '
33
33
34
34
s . add_development_dependency 'codecov' , '~> 0.2'
35
35
s . add_development_dependency 'rubocop' , '~> 1.0'
36
36
s . add_development_dependency 'rubocop-performance' , '~> 1.5'
37
37
s . add_development_dependency 'simplecov' , '~> 0.16'
38
+ s . metadata = {
39
+ 'rubygems_mfa_required' => 'true'
40
+ }
38
41
end
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module AngularRailsCsrf
4
- VERSION = '4.5 .0'
4
+ VERSION = '5.0 .0'
5
5
end
You can’t perform that action at this time.
0 commit comments