Skip to content

Commit 9e97815

Browse files
committed
Upgraded to activerecord ~> 8.0 (closes #149).
* Require Ruby >= 3.2.0 for `activerecord` ~> 8.0. * Drop Ruby 3.0 and 3.1 from the GitHub Actions CI matrix. * Upgraded to `sqlite3` ~> 2.0 in development.
1 parent 140a901 commit 9e97815

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/ruby.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
ruby:
12-
- '3.0'
13-
- '3.1'
1412
- '3.2'
1513
- '3.3'
1614
- '3.4'

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source 'https://rubygems.org'
44

55
gemspec
66

7-
gem 'sqlite3', '~> 1.0', platforms: [:mri, :truffleruby]
7+
gem 'sqlite3', '~> 2.0', platforms: [:mri, :truffleruby]
88

99
platform :jruby do
1010
gem 'jruby-openssl', '~> 0.7'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ Ronin::DB::Models.connect
168168

169169
## Requirements
170170

171-
* [Ruby] >= 3.0.0
172-
* [activerecord] ~> 7.0
171+
* [Ruby] >= 3.2.0
172+
* [activerecord] ~> 8.0
173173

174174
## Install
175175

gemspec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ metadata:
1919
changelog_uri: https://github.com/ronin-rb/ronin-db-activerecord/blob/main/ChangeLog.md
2020
rubygems_mfa_required: 'true'
2121

22-
required_ruby_version: ">= 3.0.0"
22+
required_ruby_version: ">= 3.2.0"
2323

2424
dependencies:
2525
uri-query_params: ~> 0.6
26-
activerecord: ~> 7.0
26+
activerecord: ~> 8.0
2727

2828
development_dependencies:
2929
bundler: ~> 2.0

0 commit comments

Comments
 (0)