Skip to content

Commit

Permalink
Finish 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Feb 19, 2020
2 parents 7bfbf5d + 4c5dc1d commit 63e70e1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ consuming [Linked Data][] with Ruby as quick & easy as possible.
* Includes [TriG][] support using the [RDF::TriG][] gem.
* Includes [TriX][] support using the [RDF::TriX][] gem.
* Includes [Turtle][] support using the [RDF::Turtle][] gem.
* Includes [JSON-LD][] support using the [JSON::LD][] gem.
* Includes [JSON-LD][] support using the [JSON::LD][] and [JSON::LD::Preloaded] gems.
* Includes [CSVW][] support for tabular data using the [RDF::Tabular][] gem.
* Includes [LD Patch][] support using the [LD::Patch][] gem.
* Includes Aggregate Repository support using [RDF::AggregateRepo][], which allows graphs and repositories to be aggregated from multiple sources.
Expand Down Expand Up @@ -61,6 +61,7 @@ Note, this distribution requires [Nokogiri][] and [Nokogumbo][], which makes it
* [RDF::Vocab][] ('~> 3.1')
* [RDF::XSD][] ('~> 3.1')
* [JSON::LD][] ('~> 3.1')
* [JSON::LD::Preloaded][] ('~> 3.1')
* [LD::Patch][] ('~> 3.1')
* [ShEx][ShEx gem] ('~> 0.6')
* [SPARQL][SPARQL gem] ('~> 3.1')
Expand Down Expand Up @@ -99,6 +100,7 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[RDF::Vocab]: http://www.rubydoc.info/github/ruby-rdf/rdf-vocab
[RDF::XSD]: http://www.rubydoc.info/github/ruby-rdf/rdf-xsd
[JSON::LD]: http://www.rubydoc.info/github/ruby-rdf/json-ld
[JSON::LD::Preloaded]: http://www.rubydoc.info/github/ruby-rdf/json-ld-preloaded
[LD::Patch]: http://www.rubydoc.info/github/ruby-rdf/ld-patch
[ShEx gem]: http://www.rubydoc.info/github/ruby-rdf/shex
[SPARQL gem]: http://www.rubydoc.info/github/ruby-rdf/sparql
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.1
5 changes: 4 additions & 1 deletion lib/linkeddata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ module LinkedData
require 'rdf/ntriples'
require 'rdf/nquads'

# @see http://rubygems.org/gems/json/ld
# @see http://rubygems.org/gems/json-ld
require 'json/ld'

# @see http://rubygems.org/gems/json-ld-preloaded
require 'json/ld/preloaded'

# @see http://rubygems.org/gems/rdf-aggregate-repo
require 'rdf/aggregate_repo'

Expand Down
7 changes: 4 additions & 3 deletions linkeddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 2.4'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.1'
gem.add_runtime_dependency 'rdf', '~> 3.1', '>= 3.1.1'
gem.add_runtime_dependency 'rdf-aggregate-repo', '~> 3.1'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.1'
gem.add_runtime_dependency 'rdf-json', '~> 3.1'
Expand All @@ -36,9 +36,10 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rdf-trig', '~> 3.1'
gem.add_runtime_dependency 'rdf-trix', '~> 3.1'
gem.add_runtime_dependency 'rdf-turtle', '~> 3.1'
gem.add_runtime_dependency 'rdf-vocab', '~> 3.1'
gem.add_runtime_dependency 'rdf-vocab', '~> 3.1', '>= 3.1.2'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.1'
gem.add_runtime_dependency 'json-ld', '~> 3.1'
gem.add_runtime_dependency 'json-ld', '~> 3.1', '>= 3.1.1'
gem.add_runtime_dependency 'json-ld-preloaded', '~> 3.1', '>= 3.1.1'
gem.add_runtime_dependency 'ld-patch', '~> 3.1'
gem.add_runtime_dependency 'shex', '~> 0.6'
gem.add_runtime_dependency 'sparql', '~> 3.1'
Expand Down

0 comments on commit 63e70e1

Please sign in to comment.