Skip to content

Commit b4b9d34

Browse files
committed
v7.0.0
1 parent efd6150 commit b4b9d34

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require:
22
- rubocop-performance
33

44
AllCops:
5-
TargetRubyVersion: 3.0
5+
TargetRubyVersion: 3.2
66
NewCops: enable
77
SuggestExtensions: false
88

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Changelog
22

3-
## Unreleased
3+
## 7.0.0 (12-Nov-24)
44

5-
* Do not test with Ruby 3.0 and 3.1
5+
* **Breaking change**: require Ruby 3.2+. If you need support for older Rubies, stay on version 6
6+
* Set Railties dependency to `< 9`
67
* Test with Rails 8
8+
* Do not test with Ruby 3.0 and 3.1
79

810
## 6.0.0 (14-Nov-23)
911

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ source 'https://rubygems.org'
55
gemspec
66

77
group :test do
8-
gem 'rails', '8.0.0.rc2'
8+
gem 'fiddle', '~> 1.1', platforms: %i[mingw mswin x64_mingw]
9+
gem 'rails', '8.0.0'
910
gem 'rake', '~> 13.0'
1011
gem 'rubocop', '~> 1.0'
1112
gem 'rubocop-performance', '~> 1.5'

LICENSE renamed to LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2022 James Sanders, Ilya Krukowski
1+
Copyright 2024 James Sanders, Ilya Krukowski
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

angular_rails_csrf.gemspec

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
# Maintain your gem's version:
65
require 'angular_rails_csrf/version'
76

8-
# Describe your gem and declare its dependencies:
97
Gem::Specification.new do |s|
108
s.name = 'angular_rails_csrf'
119
s.version = AngularRailsCsrf::VERSION
@@ -16,7 +14,7 @@ Gem::Specification.new do |s|
1614
s.description = 'AngularJS style CSRF protection for Rails'
1715
s.license = 'MIT'
1816

19-
s.files = Dir['lib/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
17+
s.files = Dir['lib/**/*', 'LICENSE.md', 'Rakefile', 'README.md', 'CHANGELOG.md']
2018

2119
s.required_ruby_version = '>= 3.2'
2220

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 = '6.0.0'
4+
VERSION = '7.0.0'
55
end

0 commit comments

Comments
 (0)