Skip to content

Commit ccb51ef

Browse files
committed
* CI on Ruby 3.3.
* Reference release notes on GitHub.
1 parent 1322f67 commit ccb51ef

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
22+
ruby: ['3.0', 3.1, 3.2, 3.3, ruby-head, jruby]
2323
steps:
2424
- name: Clone repository
2525
uses: actions/checkout@v3
@@ -33,6 +33,6 @@ jobs:
3333
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
3434
- name: Coveralls GitHub Action
3535
uses: coverallsapp/github-action@v2
36-
if: "matrix.ruby == '3.2'"
36+
if: "matrix.ruby == '3.3'"
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ The reader uses the [Turtle][Turtle doc] parser. The writer also is based on the
6565
The syntax is compatible with placing default triples within `{}`, but the writer does not use this for writing triples in the default graph.
6666

6767
There is a new `:stream` option to {RDF::TriG::Writer} which is more efficient for streaming large datasets.
68-
68+
69+
## Change Log
70+
71+
See [Release Notes on GitHub](https://github.com/ruby-rdf/rdf-trig/releases)
72+
6973
## Dependencies
7074

7175
* [Ruby](https://ruby-lang.org/) (>= 3.0)

rdf-trig.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Gem::Specification.new do |gem|
3030
gem.add_runtime_dependency 'rdf', '~> 3.3'
3131
gem.add_runtime_dependency 'ebnf', '~> 2.4'
3232
gem.add_runtime_dependency 'rdf-turtle', '~> 3.3'
33+
gem.add_development_dependency 'getoptlong', '~> 0.2'
3334
gem.add_development_dependency 'json-ld', '~> 3.3'
3435
gem.add_development_dependency 'rspec', '~> 3.12'
3536
gem.add_development_dependency 'rspec-its', '~> 1.3'

0 commit comments

Comments
 (0)