Skip to content

Commit

Permalink
* CI on Ruby 3.3.
Browse files Browse the repository at this point in the history
* Reference release notes on GitHub.
  • Loading branch information
gkellogg committed Jan 8, 2024
1 parent 1322f67 commit ccb51ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
ruby: ['3.0', 3.1, 3.2, 3.3, 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@v2
if: "matrix.ruby == '3.2'"
if: "matrix.ruby == '3.3'"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -65,7 +65,11 @@ The reader uses the [Turtle][Turtle doc] parser. The writer also is based on the
The syntax is compatible with placing default triples within `{}`, but the writer does not use this for writing triples in the default graph.

There is a new `:stream` option to {RDF::TriG::Writer} which is more efficient for streaming large datasets.


## Change Log

See [Release Notes on GitHub](https://github.com/ruby-rdf/rdf-trig/releases)

## Dependencies

* [Ruby](https://ruby-lang.org/) (>= 3.0)
Expand Down
1 change: 1 addition & 0 deletions rdf-trig.gemspec
Expand Up @@ -30,6 +30,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'ebnf', '~> 2.4'
gem.add_runtime_dependency 'rdf-turtle', '~> 3.3'
gem.add_development_dependency 'getoptlong', '~> 0.2'
gem.add_development_dependency 'json-ld', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
Expand Down

0 comments on commit ccb51ef

Please sign in to comment.