Skip to content

Commit

Permalink
Version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed Dec 14, 2021
1 parent 104581a commit 950ad45
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ language: ruby
sudo: false
cache: bundler
rvm:
- 2.6.7
- 2.7.3
- 3.0.1
- 2.7.5
- 3.0.3

before_install:
- gem update bundler

env:
- 'TEST_RAILS_VERSION="~> 6.0.3"'
- 'TEST_RAILS_VERSION="~> 6.1.0"'
- 'TEST_RAILS_VERSION="~> 7.0.0.rc1"'
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Changelog

## Unreleased
## 5.0.0

* Test against Rails 6.1.
* Add support for Rails 7.
* Test against Rails 6.1 and Rails 7.0.
* Test against Ruby 3.0.
* Rails 5.1 is not supported officially anymore (but should still work fine).
* Ruby 2.5 is not supported anymore (has reached end of life).
* Ruby < 2.7 is not supported anymore (has reached end of life) but should still work.

## 4.5.0 (21-Sep-20)

Expand Down
7 changes: 5 additions & 2 deletions angular_rails_csrf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,18 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'test-unit', '~> 3.2'
if ENV['TEST_RAILS_VERSION'].nil?
s.add_development_dependency 'rails', '6.1.4.1'
s.add_development_dependency 'rails', '7.0.0.rc1'
else
s.add_development_dependency 'rails', ENV['TEST_RAILS_VERSION'].to_s
end

s.add_runtime_dependency 'railties', '>= 3', '< 7'
s.add_runtime_dependency 'railties', '>= 3', '< 8'

s.add_development_dependency 'codecov', '~> 0.2'
s.add_development_dependency 'rubocop', '~> 1.0'
s.add_development_dependency 'rubocop-performance', '~> 1.5'
s.add_development_dependency 'simplecov', '~> 0.16'
s.metadata = {
'rubygems_mfa_required' => 'true'
}
end
2 changes: 1 addition & 1 deletion lib/angular_rails_csrf/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module AngularRailsCsrf
VERSION = '4.5.0'
VERSION = '5.0.0'
end

0 comments on commit 950ad45

Please sign in to comment.