Skip to content

Commit

Permalink
v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed Nov 12, 2024
1 parent efd6150 commit b4b9d34
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require:
- rubocop-performance

AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.2
NewCops: enable
SuggestExtensions: false

Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

## Unreleased
## 7.0.0 (12-Nov-24)

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

## 6.0.0 (14-Nov-23)

Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ source 'https://rubygems.org'
gemspec

group :test do
gem 'rails', '8.0.0.rc2'
gem 'fiddle', '~> 1.1', platforms: %i[mingw mswin x64_mingw]
gem 'rails', '8.0.0'
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.0'
gem 'rubocop-performance', '~> 1.5'
Expand Down
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2022 James Sanders, Ilya Krukowski
Copyright 2024 James Sanders, Ilya Krukowski

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
4 changes: 1 addition & 3 deletions angular_rails_csrf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

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

# Maintain your gem's version:
require 'angular_rails_csrf/version'

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

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

s.required_ruby_version = '>= 3.2'

Expand Down
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 = '6.0.0'
VERSION = '7.0.0'
end

0 comments on commit b4b9d34

Please sign in to comment.