Skip to content

Commit 17e6016

Browse files
committed
Finish 3.3.0
2 parents f349b73 + 5d4be25 commit 17e6016

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
22+
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
2323
steps:
2424
- name: Clone repository
2525
uses: actions/checkout@v3

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ gem "ld-patch", git: "https://github.com/ruby-rdf/ld-patch",
99
gem "rack-rdf", git: "https://github.com/ruby-rdf/rack-rdf", branch: "develop"
1010
gem "rdf", git: "https://github.com/ruby-rdf/rdf", branch: "develop"
1111
gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop"
12+
gem 'rdf-hamster-repo', git: 'https://github.com/ruby-rdf/rdf-hamster-repo', branch: 'develop'
1213
gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
1314
gem 'rdf-json', git: "https://github.com/ruby-rdf/rdf-json", branch: "develop"
1415
gem 'rdf-microdata', git: "https://github.com/ruby-rdf/rdf-microdata", branch: "develop"
1516
gem 'rdf-n3', git: "https://github.com/ruby-rdf/rdf-n3", branch: "develop"
1617
gem 'rdf-normalize', git: "https://github.com/ruby-rdf/rdf-normalize", branch: "develop"
18+
gem 'rdf-ordered-repo', git: 'https://github.com/ruby-rdf/rdf-ordered-repo', branch: 'develop'
1719
gem 'rdf-rdfa', git: "https://github.com/ruby-rdf/rdf-rdfa", branch: "develop"
1820
gem 'rdf-rdfxml', git: "https://github.com/ruby-rdf/rdf-rdfxml", branch: "develop"
1921
gem 'rdf-reasoner', git: "https://github.com/ruby-rdf/rdf-reasoner", branch: "develop"
@@ -24,6 +26,7 @@ gem 'rdf-trix', git: "https://github.com/ruby-rdf/rdf-trix",
2426
gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
2527
gem 'rdf-vocab', git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop"
2628
gem 'rdf-xsd', git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop"
29+
gem 'shacl', git: "https://github.com/ruby-rdf/shacl", branch: "develop"
2730
gem 'shex', git: "https://github.com/ruby-rdf/shex", branch: "develop"
2831
gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop"
2932
gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ for N-Triples, N-Quads, Turtle, RDF/XML, RDF/JSON, JSON-LD, RDFa, TriG and TriX.
9999

100100
## Dependencies
101101

102-
* [Rack](https://rubygems.org/gems/rack) (~> 2.0)
103-
* [Linked Data](https://rubygems.org/gems/linkeddata) (~> 3.1)
102+
* [Rack](https://rubygems.org/gems/rack) (~> 2.2)
103+
* [Linked Data](https://rubygems.org/gems/linkeddata) (~> 3.3)
104104

105105
## Installation
106106

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.3
1+
3.3.0

rack-linkeddata.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Gem::Specification.new do |gem|
2525
gem.files = %w(AUTHORS CREDITS README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
2626
gem.require_paths = %w(lib)
2727

28-
gem.required_ruby_version = '>= 2.6'
28+
gem.required_ruby_version = '>= 3.0'
2929
gem.requirements = []
30-
gem.add_runtime_dependency 'linkeddata', '~> 3.2', '>= 3.2.2'
31-
gem.add_runtime_dependency 'rack-rdf', '~> 3.2', '>= 3.2.3'
30+
gem.add_runtime_dependency 'linkeddata', '~> 3.3'
31+
gem.add_runtime_dependency 'rack-rdf', '~> 3.3'
3232
gem.add_runtime_dependency 'rack', '>= 2.2', '< 4'
3333

3434
gem.add_development_dependency 'yard' , '~> 0.9'

0 commit comments

Comments
 (0)