Skip to content

Commit 950ad45

Browse files
committed
Version 5.0.0
1 parent 104581a commit 950ad45

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.travis.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ language: ruby
22
sudo: false
33
cache: bundler
44
rvm:
5-
- 2.6.7
6-
- 2.7.3
7-
- 3.0.1
5+
- 2.7.5
6+
- 3.0.3
87

98
before_install:
109
- gem update bundler
1110

1211
env:
13-
- 'TEST_RAILS_VERSION="~> 6.0.3"'
1412
- 'TEST_RAILS_VERSION="~> 6.1.0"'
13+
- 'TEST_RAILS_VERSION="~> 7.0.0.rc1"'

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## 5.0.0
44

5-
* Test against Rails 6.1.
5+
* Add support for Rails 7.
6+
* Test against Rails 6.1 and Rails 7.0.
67
* Test against Ruby 3.0.
78
* 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.
910

1011
## 4.5.0 (21-Sep-20)
1112

angular_rails_csrf.gemspec

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,18 @@ Gem::Specification.new do |s|
2424
s.add_development_dependency 'rake', '~> 13.0'
2525
s.add_development_dependency 'test-unit', '~> 3.2'
2626
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'
2828
else
2929
s.add_development_dependency 'rails', ENV['TEST_RAILS_VERSION'].to_s
3030
end
3131

32-
s.add_runtime_dependency 'railties', '>= 3', '< 7'
32+
s.add_runtime_dependency 'railties', '>= 3', '< 8'
3333

3434
s.add_development_dependency 'codecov', '~> 0.2'
3535
s.add_development_dependency 'rubocop', '~> 1.0'
3636
s.add_development_dependency 'rubocop-performance', '~> 1.5'
3737
s.add_development_dependency 'simplecov', '~> 0.16'
38+
s.metadata = {
39+
'rubygems_mfa_required' => 'true'
40+
}
3841
end

lib/angular_rails_csrf/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module AngularRailsCsrf
4-
VERSION = '4.5.0'
4+
VERSION = '5.0.0'
55
end

0 commit comments

Comments
 (0)