Skip to content

Commit

Permalink
Updates for version 3.3.0 with minimum Ruby version 3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Aug 26, 2023
1 parent 0f0b551 commit c3ac011
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v3
Expand All @@ -40,7 +40,7 @@ jobs:
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
if: "matrix.ruby == '3.0'"
if: "matrix.ruby == '3.2'"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
wintests:
Expand All @@ -66,8 +66,3 @@ jobs:
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
if: "matrix.ruby == '3.0'"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ group :debug do
end

group :development, :test do
gem 'simplecov', '~> 0.21', platforms: :mri
gem 'simplecov', '~> 0.22', platforms: :mri
gem 'simplecov-lcov', '~> 0.8', platforms: :mri
end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Note that in most cases, if the instance is empty and mutable, the appropriate s

## Dependencies

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

## Installation

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.3.0
12 changes: 6 additions & 6 deletions rdf-spec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Gem::Specification.new do |gem|
gem.files = %w(AUTHORS CREDITS README.md UNLICENSE VERSION) + Dir.glob('etc/*') + Dir.glob('lib/**/*.rb') + Dir.glob('spec/*.rb')
gem.require_paths = %w(lib)

gem.required_ruby_version = '>= 2.6'
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.2'
gem.add_runtime_dependency 'amazing_print', '~> 1.4'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.2'
gem.add_runtime_dependency 'rspec', '~> 3.10'
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'amazing_print', '~> 1.5'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.3'
gem.add_runtime_dependency 'rspec', '~> 3.12'
gem.add_runtime_dependency 'rspec-its', '~> 1.3'
gem.add_runtime_dependency 'rexml', '~> 3.2' # For Webmock
gem.add_runtime_dependency 'webmock', '~> 3.14'
gem.add_runtime_dependency 'webmock', '~> 3.19'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.post_install_message = nil
end

0 comments on commit c3ac011

Please sign in to comment.