Skip to content

Commit f90c8b2

Browse files
committed
Include Mongoid 9.x in compatible dependencies
1 parent 44fedc4 commit f90c8b2

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/workflows/test.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,22 @@ jobs:
55
strategy:
66
fail-fast: false
77
matrix:
8-
mongoid: [4, 5, 6, 7, 8, HEAD]
8+
mongoid: [4, 5, 6, 7, 8, 9 HEAD]
99
ruby: [3.2]
1010
include:
11-
- mongoid: 8
12-
ruby: 2.7
13-
- mongoid: 8
14-
ruby: 3.0
15-
- mongoid: 8
11+
- mongoid: 9
1612
ruby: 3.1
17-
- mongoid: 8
13+
- mongoid: 9
1814
ruby: 3.2
15+
- mongoid: 9
16+
ruby: 3.3
1917

2018
runs-on: ubuntu-latest
2119
steps:
2220
- id: mongodb
2321
name: Start MongoDB
2422
uses: mongodb-labs/drivers-evergreen-tools@master
25-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2624
- uses: ruby/setup-ruby@v1
2725
with:
2826
ruby-version: ${{ matrix.ruby }}

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ gemspec
44

55
case version = ENV['MONGOID_VERSION'] || '~> 7.0'
66
when 'HEAD' then gem 'mongoid', github: 'mongodb/mongoid'
7+
when /9/ then gem 'mongoid', '~> 9.0'
78
when /8/ then gem 'mongoid', '~> 8.0'
89
when /7/ then gem 'mongoid', '~> 7.0'
910
when /6/ then gem 'mongoid', '~> 6.0'

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A tree structure for Mongoid documents using the materialized path pattern
44

55
## Requirements
66

7-
* mongoid (>= 4.0, < 9.0)
7+
* mongoid (>= 4.0, < 10.0)
88

99
For a mongoid 3.x compatible version, please use mongoid-tree 1.0.x,
1010
for a mongoid 2.x compatible version, please use mongoid-tree 0.7.x.
@@ -189,7 +189,7 @@ end
189189

190190
## Build Status
191191

192-
mongoid-tree is on [GitHub Actions](https://github.com/benedikt/mongoid-tree/actions) running the specs on Ruby 2.7-3.2 and Mongoid 4.x-8.x.
192+
mongoid-tree is on [GitHub Actions](https://github.com/benedikt/mongoid-tree/actions) running the specs on Ruby 3.1-3.3 and Mongoid 4.x-9.x.
193193

194194
## Known issues
195195

@@ -208,4 +208,4 @@ See a list of all contributors at [https://github.com/benedikt/mongoid-tree/cont
208208

209209
## Copyright
210210

211-
Copyright (c) 2010-2023 Benedikt Deicke. See LICENSE for details.
211+
Copyright (c) 2010-2024 Benedikt Deicke. See LICENSE for details.

mongoid-tree.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212

1313
s.files = Dir.glob('{lib,spec}/**/*') + %w(LICENSE README.md Rakefile Gemfile)
1414

15-
s.add_runtime_dependency('mongoid', ['>= 4.0', '< 9'])
15+
s.add_runtime_dependency('mongoid', ['>= 4.0', '< 10'])
1616
s.add_development_dependency('mongoid-compatibility')
1717
s.add_development_dependency('rake', ['>= 0.9.2'])
1818
s.add_development_dependency('rspec', ['~> 3.0'])

0 commit comments

Comments
 (0)