Skip to content

Commit 2fb5eb0

Browse files
committed
Allow and test Rails 8.1, bump version
1 parent e76ff5a commit 2fb5eb0

File tree

6 files changed

+28
-2
lines changed

6 files changed

+28
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
- gemfile: rails_80
5252
ruby: '3.3'
5353

54+
- gemfile: rails_81
55+
ruby: '3.4'
56+
5457

5558
name: test ${{ matrix.gemfile }}, ruby ${{ matrix.ruby }}
5659

Appraisals

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@ end
3434
appraise "rails-80" do
3535
gem "rails", "~> 8.0.0"
3636
end
37+
38+
appraise "rails-81" do
39+
gem "rails", "~> 8.1.0"
40+
end

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
*
1010

11+
## 2.18.0
12+
13+
* Rails 8.1 allowed by gemspec and tested, no logic changes.
14+
1115
## 2.17.0
1216

1317
### Added

gemfiles/rails_81.gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "rails", "~> 8.1.0"
6+
7+
group :development, :test do
8+
gem "rspec-rails", ">= 5.0", "< 7"
9+
gem "rspec-mocks", ">= 3.12.1"
10+
gem "pry-byebug", "~> 3.6"
11+
gem "factory_bot_rails", "~> 6.2", "!= 6.3.0", "!= 6.4.0"
12+
gem "sprockets-rails"
13+
end
14+
15+
gemspec path: "../"

kithe.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919

2020
s.required_ruby_version = '>= 2.5'
2121

22-
s.add_dependency "rails", ">= 6.0", "< 8.1"
22+
s.add_dependency "rails", ">= 6.0", "< 8.2"
2323
s.add_dependency "attr_json", "~> 2.0"
2424

2525
s.add_dependency "simple_form", ">= 4.0", "< 6.0"

lib/kithe/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Kithe
2-
VERSION = '2.17.0'
2+
VERSION = '2.18.0'
33
end

0 commit comments

Comments
 (0)