Skip to content

Commit 7074ab7

Browse files
committed
Update documentation, dependencies, and version sync for 3.2.
1 parent d6beaed commit 7074ab7

4 files changed

Lines changed: 17 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
ruby:
23-
- 2.5
2423
- 2.6
2524
- 2.7
2625
- 3.0
@@ -36,7 +35,7 @@ jobs:
3635
- name: Install dependencies
3736
run: bundle install --jobs 4 --retry 3
3837
- name: Run tests
39-
run: bundle exec rspec spec || $ALLOW_FAILURES
38+
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
4039
- name: Coveralls GitHub Action
4140
uses: coverallsapp/github-action@v1.1.2
4241
if: "matrix.ruby == '3.0'"

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This gem implements the [LD Patch][] specification with a couple of changes and/
2525
* 100% free and unencumbered [public domain](http://unlicense.org/) software.
2626
* Complete [Linked Data Patch Format][LD Patch] parsing and execution
2727
* Implementation Report: {file:etc/earl.html EARL}
28-
* Compatible with Ruby >= 2.4.
28+
* Compatible with Ruby >= 2.6.
2929

3030
## Documentation
3131
Full documentation available on [Rubydoc.info][LD-Patch doc]
@@ -74,12 +74,12 @@ The parser takes branch and follow tables generated from the [LD Patch Grammar](
7474

7575
## Dependencies
7676

77-
* [Ruby](http://ruby-lang.org/) (>= 2.4)
78-
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.1)
79-
* [EBNF][] (~> 1.2)
80-
* [SPARQL][] (~> 3.1)
81-
* [SXP][] (~> 1.1)
82-
* [RDF::XSD][] (~> 3.1)
77+
* [Ruby](http://ruby-lang.org/) (>= 2.6)
78+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
79+
* [EBNF][] (~> 1.3)
80+
* [SPARQL][] (~> 3.2)
81+
* [SXP][] (~> 1.2)
82+
* [RDF::XSD][] (~> 3.2)
8383

8484
## Mailing List
8585
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.2.0

ld-patch.gemspec

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@ Gem::Specification.new do |gem|
2020
Implements the W3C Linked Data Patch Format and operations for RDF.rb.
2121
Makes use of the SPARQL gem for performing updates.)
2222

23-
gem.required_ruby_version = '>= 2.4'
23+
gem.required_ruby_version = '>= 2.6'
2424
gem.requirements = []
25-
gem.add_runtime_dependency 'rdf', '~> 3.1'
26-
gem.add_runtime_dependency 'ebnf', '~> 2.1'
27-
gem.add_runtime_dependency 'sparql', '~> 3.1'
28-
gem.add_runtime_dependency 'sxp', '~> 1.1'
29-
gem.add_runtime_dependency 'rdf-xsd', '~> 3.1'
25+
gem.add_runtime_dependency 'rdf', '~> 3.2'
26+
gem.add_runtime_dependency 'ebnf', '~> 2.2'
27+
gem.add_runtime_dependency 'sparql', '~> 3.2'
28+
gem.add_runtime_dependency 'sxp', '~> 1.2'
29+
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2'
3030

31-
gem.add_development_dependency 'json-ld', '~> 3.1'
31+
gem.add_development_dependency 'json-ld', '~> 3.2'
3232
gem.add_development_dependency 'rack', '~> 2.2'
33-
gem.add_development_dependency 'rdf-spec', '~> 3.1'
34-
gem.add_development_dependency 'open-uri-cached', '~> 0.0', '>= 0.0.5'
33+
gem.add_development_dependency 'rdf-spec', '~> 3.2'
3534
gem.add_development_dependency 'rspec', '~> 3.10'
3635
gem.add_development_dependency 'rspec-its', '~> 1.3'
3736
gem.add_development_dependency 'yard' , '~> 0.9'

0 commit comments

Comments
 (0)