From 76411d511d9d81b49eb99657a12e61ebe18e0cfc Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 26 Aug 2023 12:55:29 -0700 Subject: [PATCH] Updates for version 3.3.0 with minimum Ruby version 3.0. --- .github/workflows/ci.yml | 6 +++--- Gemfile | 2 +- VERSION | 2 +- rdf-raptor.gemspec | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 305066f..25d4214 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,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 @@ -34,7 +34,7 @@ jobs: - name: Run tests run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES - name: Coveralls GitHub Action - uses: coverallsapp/github-action@v1.1.2 - if: "matrix.ruby == '3.0'" + uses: coverallsapp/github-action@v2 + if: "matrix.ruby == '3.2'" with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Gemfile b/Gemfile index b963771..13c5327 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,7 @@ gem 'rdf-spec', github: 'ruby-rdf/rdf-spec', branch: "develop" gem "rdf-isomorphic", github: "ruby-rdf/rdf-isomorphic", branch: "develop" group :test do - gem 'simplecov', '~> 0.21', platforms: :mri + gem 'simplecov', '~> 0.22', platforms: :mri gem 'simplecov-lcov', '~> 0.8', platforms: :mri end diff --git a/VERSION b/VERSION index 944880f..15a2799 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.2.0 +3.3.0 diff --git a/rdf-raptor.gemspec b/rdf-raptor.gemspec index ae13959..9d77671 100755 --- a/rdf-raptor.gemspec +++ b/rdf-raptor.gemspec @@ -25,12 +25,12 @@ Gem::Specification.new do |gem| gem.files = %w(AUTHORS CONTRIBUTING.md CREDITS README.md UNLICENSE VERSION etc/doap.ttl) + Dir.glob('lib/**/*.rb') gem.require_paths = %w(lib) - gem.required_ruby_version = '>= 2.6' + gem.required_ruby_version = '>= 3.0' gem.requirements = ['libraptor2 (>= 2.0)'] gem.add_runtime_dependency 'ffi', '~> 1.15' - gem.add_runtime_dependency 'rdf', '~> 3.2' + gem.add_runtime_dependency 'rdf', '~> 3.3' gem.add_development_dependency 'yard' , '~> 0.9' - gem.add_development_dependency 'rspec', '~> 3.10' + gem.add_development_dependency 'rspec', '~> 3.12' gem.add_development_dependency 'rspec-its','~> 1.3' gem.add_development_dependency 'rdf-spec', '~> 3.2' gem.add_development_dependency 'rake', '~> 13.0'