Skip to content

Commit 1ca929a

Browse files
vladshkurinurkle
authored andcommitted
Add support for Rails 8.1
1 parent 7a3a0f3 commit 1ca929a

5 files changed

Lines changed: 19 additions & 3 deletions

File tree

.github/workflows/prs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,18 @@ jobs:
2525
- '7.1'
2626
- '7.2'
2727
- '8.0'
28+
- '8.1'
2829
exclude:
2930
- ruby: '3.0'
3031
activerecord: '7.2'
3132
- ruby: '3.0'
3233
activerecord: '8.0'
34+
- ruby: '3.0'
35+
activerecord: '8.1'
3336
- ruby: '3.1'
3437
activerecord: '8.0'
38+
- ruby: '3.1'
39+
activerecord: '8.1'
3540
env:
3641
BUNDLE_GEMFILE: "${{ github.workspace }}/gemfiles/activerecord-${{ matrix.activerecord }}.gemfile"
3742
steps:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
66

7+
## [0.8.2]
8+
### Changed
9+
- add support for Rails 8.1
10+
711
## [0.8.1]
812
### Changes
913
- Updated Log subscriber mixin to utilize Rails 7.1's contract for "color"

ar-multidb.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Gem::Specification.new do |s|
2121

2222
s.required_ruby_version = '>= 3.0.0'
2323

24-
s.add_runtime_dependency 'activerecord', '>= 7.1', '< 8.1'
25-
s.add_runtime_dependency 'activesupport', '>= 7.1', '< 8.1'
24+
s.add_runtime_dependency 'activerecord', '>= 7.1', '< 8.2'
25+
s.add_runtime_dependency 'activesupport', '>= 7.1', '< 8.2'
2626

2727
s.add_development_dependency 'rake', '~> 13.0'
2828
s.add_development_dependency 'rspec', '~> 3.8'

gemfiles/activerecord-8.1.gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
gem 'activerecord', '~> 8.1.0'
6+
7+
gemspec path: '..'

lib/multidb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Multidb
4-
VERSION = '0.8.1'
4+
VERSION = '0.8.2'
55
end

0 commit comments

Comments
 (0)