Skip to content

Commit 07693ff

Browse files
authored
Add support for Active Record 7.1 (#41)
* Add Rails 7.1 support * bump version to 0.7.0
1 parent 7b104c2 commit 07693ff

5 files changed

Lines changed: 17 additions & 3 deletions

File tree

.github/workflows/prs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ jobs:
2525
- '6.0'
2626
- '6.1'
2727
- '7.0'
28+
- '7.1'
2829
exclude:
2930
- ruby: '2.5'
3031
activerecord: '7.0'
32+
- ruby: '2.5'
33+
activerecord: '7.1'
3134
- ruby: '3.0'
3235
activerecord: '5.1'
3336
- ruby: '3.0'

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.7.0]
8+
### Changed
9+
- add AR 7.1 support
10+
711
## [0.6.0]
812
### Changed
913
- dropped ruby 2.4 support

ar-multidb.gemspec

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

2121
s.required_ruby_version = '>= 2.5.0'
2222

23-
s.add_runtime_dependency 'activerecord', '>= 5.1', '< 7.1'
24-
s.add_runtime_dependency 'activesupport', '>= 5.1', '< 7.1'
23+
s.add_runtime_dependency 'activerecord', '>= 5.1', '< 7.2'
24+
s.add_runtime_dependency 'activesupport', '>= 5.1', '< 7.2'
2525

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

gemfiles/activerecord-7.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', '~> 7.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.6.0'
4+
VERSION = '0.7.0'
55
end

0 commit comments

Comments
 (0)