Skip to content

Commit

Permalink
Version 3.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 25, 2020
1 parent 8deb81f commit ab7c255
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
runs-on: ubuntu-latest
env:
CI: true
ALLOW_FAILURES: false # ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -31,6 +30,7 @@ jobs:
- 2.5
- 2.6
- 2.7
- 3.0
- ruby-head
- jruby
steps:
Expand All @@ -43,5 +43,5 @@ jobs:
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rspec spec || $ALLOW_FAILURES
run: bundle exec rspec spec

4 changes: 2 additions & 2 deletions 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', platforms: :mri
gem 'coveralls', '~> 0.8', platforms: :mri
gem 'simplecov', require: false, platforms: :mri
gem 'coveralls', require: false, platforms: :mri
end
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.1.2
4 changes: 2 additions & 2 deletions rdf-spec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 2.4'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.1'
gem.add_runtime_dependency 'rdf', '~> 3.1', '>= 3.1.8'
gem.add_runtime_dependency 'awesome_print', '~> 1.8'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.1'
gem.add_runtime_dependency 'rspec', '~> 3.9'
gem.add_runtime_dependency 'rspec-its', '~> 1.3'
gem.add_runtime_dependency 'rexml', '~> 3.2' # For Webmock
gem.add_runtime_dependency 'webmock', '~> 3.7'
gem.add_development_dependency 'yard' , '~> 0.9.20'
gem.add_development_dependency 'yard' , '~> 0.9'
gem.post_install_message = nil
end

0 comments on commit ab7c255

Please sign in to comment.