Skip to content

Commit

Permalink
Updates for version 0.7 depending on RDF.rb 3.3 and Ruby 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Aug 26, 2023
1 parent 272a856 commit 9568375
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.7, '3.0', 3.1, 3.2, 3.2, ruby-head, jruby]
ruby: ['3.0', 3.1, 3.2, 3.2, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v3
Expand All @@ -33,6 +33,6 @@ jobs:
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
if: "matrix.ruby == '3.0'"
if: "matrix.ruby == '3.2'"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Algorithms implemented:
Install with `gem install rdf-normalize`

* 100% free and unencumbered [public domain](https://unlicense.org/) software.
* Compatible with Ruby >= 2.6.
* Compatible with Ruby >= 3.0.

## Usage

Expand Down Expand Up @@ -58,8 +58,8 @@ Full documentation available on [GitHub][Normalize doc]

## Dependencies

* [Ruby](https://ruby-lang.org/) (>= 2.6)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
* [Ruby](https://ruby-lang.org/) (>= 3.0)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.3)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.7.0
4 changes: 2 additions & 2 deletions rdf-normalize.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Gem::Specification.new do |gem|
gem.files = %w(AUTHORS README.md LICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)

gem.required_ruby_version = '>= 2.6'
gem.add_dependency 'rdf', '~> 3.2'
gem.required_ruby_version = '>= 3.0'
gem.add_dependency 'rdf', '~> 3.3'
gem.add_development_dependency 'rdf-spec', '~> 3.2'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'json-ld', '~> 3.2'
Expand Down

0 comments on commit 9568375

Please sign in to comment.