Skip to content

Commit 23d48fd

Browse files
committed
Update documentation, dependencies, and version sync for 3.2.
1 parent 8244c4b commit 23d48fd

4 files changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
ruby:
23-
- 2.4
24-
- 2.5
2523
- 2.6
2624
- 2.7
25+
- 3.0
2726
- ruby-head
2827
- jruby
2928
mongodb-version:
@@ -37,7 +36,6 @@ jobs:
3736
ruby-version: ${{ matrix.ruby }}
3837
- name: Install dependencies
3938
run: bundle install --jobs 4 --retry 3
40-
4139
- name: Start MongoDB
4240
uses: supercharge/mongodb-github-action@1.3.0
4341
with:

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ This is an [RDF.rb][] storage adapter for MongoDB.
1010

1111
Moving forward, the versioning will reflect the [RDF.rb][] version number for which all rdf-specs are passing.
1212

13-
It should also be noted that prior to 1.0, there are no guarantees of backwards compatibility for data stored using previous versions of the gem. This is to make optimizing the schema for MongoDB easy.
14-
1513
## Requirements
1614

1715
You'll need the 'mongo', 'rdf', 'rdf-spec', and 'rspec' libraries. The easiest way to install these is via RubyGems.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.2.0

rdf-mongo.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ Gem::Specification.new do |gem|
2525
gem.require_paths = %w(lib)
2626
gem.test_files = Dir.glob('spec/*.spec')
2727

28-
gem.required_ruby_version = '>= 2.4'
28+
gem.required_ruby_version = '>= 2.6'
2929
gem.requirements = []
30-
gem.add_runtime_dependency 'rdf', '>= 3.1'
31-
gem.add_runtime_dependency 'mongo', '~> 2.14'
30+
gem.add_runtime_dependency 'rdf', '>= 3.2'
31+
gem.add_runtime_dependency 'mongo', '~> 2.17'
3232

33-
gem.add_development_dependency 'rdf-spec', '>= 3.1'
33+
gem.add_development_dependency 'rdf-spec', '>= 3.2'
3434
gem.add_development_dependency 'rspec', '~> 3.10'
3535
gem.add_development_dependency 'rspec-its', '~> 1.3'
3636
gem.add_development_dependency 'yard', '~> 0.9'

0 commit comments

Comments
 (0)