Skip to content

Commit b24b097

Browse files
committed
Updates for version 3.3 with minumum Ruby version 3.0.
1 parent 4a13da9 commit b24b097

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
22+
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
2323
steps:
2424
- name: Clone repository
2525
uses: actions/checkout@v3
@@ -33,7 +33,7 @@ jobs:
3333
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
3434
- name: Coveralls GitHub Action
3535
uses: coverallsapp/github-action@v2
36-
if: "matrix.ruby == '3.0'"
36+
if: "matrix.ruby == '3.2'"
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
3939
wintests:
@@ -58,8 +58,3 @@ jobs:
5858
run: bundle install --jobs 4 --retry 3
5959
- name: Run tests
6060
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
61-
- name: Coveralls GitHub Action
62-
uses: coverallsapp/github-action@v2
63-
if: "matrix.ruby == '3.0'"
64-
with:
65-
github-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -588,8 +588,8 @@ Note, the API method signatures differed in versions before 1.0, in that they al
588588
* {JSON::LD::Writer}
589589

590590
## Dependencies
591-
* [Ruby](https://ruby-lang.org/) (>= 2.6)
592-
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
591+
* [Ruby](https://ruby-lang.org/) (>= 3.0)
592+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.3)
593593
* [JSON](https://rubygems.org/gems/json) (>= 2.6)
594594

595595
## Installation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.5
1+
3.3.0

json-ld.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ Gem::Specification.new do |gem|
2929
gem.executables = %w[jsonld]
3030
gem.require_paths = %w[lib]
3131

32-
gem.required_ruby_version = '>= 2.6'
32+
gem.required_ruby_version = '>= 3.0'
3333
gem.requirements = []
3434
gem.add_runtime_dependency 'htmlentities', '~> 4.3'
3535
gem.add_runtime_dependency 'json-canonicalization', '~> 0.3', '>= 0.3.2'
3636
gem.add_runtime_dependency 'link_header', '~> 0.0', '>= 0.0.8'
3737
gem.add_runtime_dependency 'multi_json', '~> 1.15'
3838
gem.add_runtime_dependency "rack", '>= 2.2', '< 4'
39-
gem.add_runtime_dependency 'rdf', '~> 3.2', '>= 3.2.10'
39+
gem.add_runtime_dependency 'rdf', '~> 3.3'
4040
gem.add_development_dependency 'jsonlint', '~> 0.4' unless is_java
41-
gem.add_development_dependency 'oj', '~> 3.14' unless is_java
42-
gem.add_development_dependency 'rack-test', '>= 1.1', '< 3'
41+
gem.add_development_dependency 'oj', '~> 3.15' unless is_java
42+
gem.add_development_dependency 'rack-test', '~> 2.1'
4343
gem.add_development_dependency 'rdf-isomorphic', '~> 3.2'
4444
gem.add_development_dependency 'rdf-spec', '~> 3.2'
4545
gem.add_development_dependency 'rdf-trig', '~> 3.2'

0 commit comments

Comments
 (0)