Skip to content

Commit

Permalink
Finish 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jul 23, 2023
2 parents 3e780b5 + ba64834 commit 9b83db0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 25 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- "3.0"
- 3.1
- ruby-head
- jruby
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Update gh-pages with docs
steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is a meta-distribution of [RDF.rb][] including all currently available
and usable parsing/serialization extensions, intended to make producing and
consuming [Linked Data][] with Ruby as quick & easy as possible.

[![Gem Version](https://badge.fury.io/rb/linkeddata.png)](http://badge.fury.io/rb/linkeddata)
[![Gem Version](https://badge.fury.io/rb/linkeddata.svg)](http://badge.fury.io/rb/linkeddata)
[![Build Status](https://github.com/ruby-rdf/linkeddata/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/linkeddata/actions?query=workflow%3ACI)
[![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf)

Expand Down Expand Up @@ -159,4 +159,4 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[TriX]: http://www.w3.org/2004/03/trix/
[Turtle]: http://www.w3.org/TR/turtle/
[XSD Datatypes]: http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#built-in-datatypes
[YAML-LD]: https://json-ld.github.io/yaml-ld/spec
[YAML-LD]: https://json-ld.github.io/yaml-ld/spec
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.1
3.2.2
26 changes: 13 additions & 13 deletions linkeddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,36 +27,36 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.2', '>= 3.2.9'
gem.add_runtime_dependency 'rdf', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-aggregate-repo', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-hamster-repo', '~> 3.2'
gem.add_runtime_dependency 'rdf-hamster-repo', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-json', '~> 3.2'
gem.add_runtime_dependency 'rdf-microdata', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-n3', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-normalize', '~> 0.5'
gem.add_runtime_dependency 'rdf-normalize', '~> 0.6', '>= 0.6.1'
gem.add_runtime_dependency 'rdf-ordered-repo', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-rdfa', '~> 3.2'
gem.add_runtime_dependency 'rdf-rdfxml', '~> 3.2'
gem.add_runtime_dependency 'rdf-rdfa', '~> 3.2', '>= 3.2.3'
gem.add_runtime_dependency 'rdf-rdfxml', '~> 3.2', '>= 3.2.2'
gem.add_runtime_dependency 'rdf-reasoner', '~> 0.8'
gem.add_runtime_dependency 'rdf-tabular', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-trig', '~> 3.2'
gem.add_runtime_dependency 'rdf-trix', '~> 3.2'
gem.add_runtime_dependency 'rdf-turtle', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-vocab', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'rdf-vocab', '~> 3.2', '>= 3.2.7'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'json-ld', '~> 3.2', '>= 3.2.3'
gem.add_runtime_dependency 'json-ld-preloaded', '~> 3.2'
gem.add_runtime_dependency 'ld-patch', '~> 3.2'
gem.add_runtime_dependency 'shacl', '~> 0.2', '>= 0.2.1'
gem.add_runtime_dependency 'json-ld', '~> 3.2', '>= 3.2.5'
gem.add_runtime_dependency 'json-ld-preloaded', '~> 3.2', '>= 3.2.2'
gem.add_runtime_dependency 'ld-patch', '~> 3.2', '>= 3.2.2'
gem.add_runtime_dependency 'shacl', '~> 0.3'
gem.add_runtime_dependency 'shex', '~> 0.7', '>= 0.7.1'
gem.add_runtime_dependency 'sparql', '~> 3.2', '>= 3.2.4'
gem.add_runtime_dependency 'sparql-client', '~> 3.2', '>= 3.2.1'
gem.add_runtime_dependency 'sparql', '~> 3.2', '>= 3.2.6'
gem.add_runtime_dependency 'sparql-client', '~> 3.2', '>= 3.2.2'
gem.add_runtime_dependency 'nokogiri', '~> 1.13', '>= 1.13.8'
#gem.add_runtime_dependency 'equivalent-xml', '~> 0.6'
gem.add_runtime_dependency 'yaml-ld', '~> 0.0'
gem.add_development_dependency 'yard', '~> 0.9'
gem.add_development_dependency 'rspec', '~> 3.11'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
gem.add_development_dependency 'rdf-spec', '~> 3.2'
gem.post_install_message = nil
Expand Down

0 comments on commit 9b83db0

Please sign in to comment.