Skip to content

Commit c3ac011

Browse files
committed
Updates for version 3.3.0 with minimum Ruby version 3.0.
1 parent 0f0b551 commit c3ac011

File tree

5 files changed

+12
-17
lines changed

5 files changed

+12
-17
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
29+
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
3030
steps:
3131
- name: Clone repository
3232
uses: actions/checkout@v3
@@ -40,7 +40,7 @@ jobs:
4040
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
4141
- name: Coveralls GitHub Action
4242
uses: coverallsapp/github-action@v2
43-
if: "matrix.ruby == '3.0'"
43+
if: "matrix.ruby == '3.2'"
4444
with:
4545
github-token: ${{ secrets.GITHUB_TOKEN }}
4646
wintests:
@@ -66,8 +66,3 @@ jobs:
6666
run: bundle install --jobs 4 --retry 3
6767
- name: Run tests
6868
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
69-
- name: Coveralls GitHub Action
70-
uses: coverallsapp/github-action@v2
71-
if: "matrix.ruby == '3.0'"
72-
with:
73-
github-token: ${{ secrets.GITHUB_TOKEN }}

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ group :debug do
1010
end
1111

1212
group :development, :test do
13-
gem 'simplecov', '~> 0.21', platforms: :mri
13+
gem 'simplecov', '~> 0.22', platforms: :mri
1414
gem 'simplecov-lcov', '~> 0.8', platforms: :mri
1515
end

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Note that in most cases, if the instance is empty and mutable, the appropriate s
3030

3131
## Dependencies
3232

33-
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
34-
* [RSpec](https://rubygems.org/gems/rspec) (~> 3.10)
33+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.3)
34+
* [RSpec](https://rubygems.org/gems/rspec) (~> 3.12)
3535

3636
## Installation
3737

VERSION

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

rdf-spec.gemspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Gem::Specification.new do |gem|
2525
gem.files = %w(AUTHORS CREDITS README.md UNLICENSE VERSION) + Dir.glob('etc/*') + Dir.glob('lib/**/*.rb') + Dir.glob('spec/*.rb')
2626
gem.require_paths = %w(lib)
2727

28-
gem.required_ruby_version = '>= 2.6'
28+
gem.required_ruby_version = '>= 3.0'
2929
gem.requirements = []
30-
gem.add_runtime_dependency 'rdf', '~> 3.2'
31-
gem.add_runtime_dependency 'amazing_print', '~> 1.4'
32-
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.2'
33-
gem.add_runtime_dependency 'rspec', '~> 3.10'
30+
gem.add_runtime_dependency 'rdf', '~> 3.3'
31+
gem.add_runtime_dependency 'amazing_print', '~> 1.5'
32+
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.3'
33+
gem.add_runtime_dependency 'rspec', '~> 3.12'
3434
gem.add_runtime_dependency 'rspec-its', '~> 1.3'
3535
gem.add_runtime_dependency 'rexml', '~> 3.2' # For Webmock
36-
gem.add_runtime_dependency 'webmock', '~> 3.14'
36+
gem.add_runtime_dependency 'webmock', '~> 3.19'
3737
gem.add_development_dependency 'yard' , '~> 0.9'
3838
gem.post_install_message = nil
3939
end

0 commit comments

Comments
 (0)