Skip to content

Commit

Permalink
Finish 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 29, 2021
2 parents 8f7207c + 34b6051 commit edc3e0f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -20,10 +20,10 @@ jobs:
fail-fast: false
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
- ruby-head
- jruby
steps:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -22,7 +22,7 @@ Install with 'gem install rdf-microdata'
Microdata to RDF transformation is undergoing active development. This implementation attempts to be up-to-date
as of the time of release, and is being used in developing the [Microdata RDF][] specification.

This implementation includes support for the proposed [@itemprop-reverse](https://www.w3.org/wiki/WebSchemas/InverseProperties#Proposed_Action:_New_attribute_.40itemprop-reverse) attribute.
This implementation includes support for the proposed [``@itemprop-reverse``](https://www.w3.org/wiki/WebSchemas/InverseProperties#Proposed_Action:_New_attribute_.40itemprop-reverse) attribute.

### Microdata Registry
The parser uses a build-in version of the [Microdata RDF][] registry.
Expand All @@ -46,11 +46,11 @@ GRDDL-type triple generation, such as for html>head>title anchor tags.
If the `RDFa` parser is available, {RDF::Microdata::Format} will not assert content type `text/html` or file extension `.html`, as this is also asserted by RDFa. Instead, the RDFa reader will invoke the microdata reader if an `@itemscope` attribute is detected.

## Dependencies
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.1)
* [RDF::RDFa](https://rubygems.org/gems/rdf-xsd) (~> 3.1)
* [RDF::XSD](https://rubygems.org/gems/rdf-xsd) (~> 3.1)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
* [RDF::RDFa](https://rubygems.org/gems/rdf-xsd) (~> 3.2)
* [RDF::XSD](https://rubygems.org/gems/rdf-xsd) (~> 3.2)
* [HTMLEntities](https://rubygems.org/gems/htmlentities) ('~> 4.3')
* [Nokogiri](https://rubygems.org/gems/nokogiri) (~> 1.10)
* [Nokogiri](https://rubygems.org/gems/nokogiri) (~> 1.12)

## Documentation
Full documentation available on [Rubydoc.info][Microdata doc]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.1.4
3.2.0
16 changes: 8 additions & 8 deletions rdf-microdata.gemspec
Expand Up @@ -18,11 +18,11 @@ Gem::Specification.new do |gem|
gem.files = %w(AUTHORS README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb') + Dir.glob('etc/*')
gem.require_paths = %w(lib)

gem.required_ruby_version = '>= 2.4'
gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.1', '>= 3.1.13'
gem.add_runtime_dependency 'rdf-rdfa', '~> 3.1', '>= 3.1.3'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.1'
gem.add_runtime_dependency 'rdf', '~> 3.2'
gem.add_runtime_dependency 'rdf-rdfa', '~> 3.2'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2'
gem.add_runtime_dependency 'htmlentities', '~> 4.3'
gem.add_runtime_dependency 'nokogiri' , '~> 1.12'

Expand All @@ -31,10 +31,10 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rspec-its', '~> 1.3'

gem.add_development_dependency 'rdf-spec', '~> 3.1'
gem.add_development_dependency 'rdf-turtle', '~> 3.1'
gem.add_development_dependency 'rdf-isomorphic', '~> 3.1'
gem.add_development_dependency 'json-ld', '~> 3.1'
gem.add_development_dependency 'rdf-spec', '~> 3.2'
gem.add_development_dependency 'rdf-turtle', '~> 3.2'
gem.add_development_dependency 'rdf-isomorphic', '~> 3.2'
gem.add_development_dependency 'json-ld', '~> 3.2'

gem.post_install_message = nil
end

0 comments on commit edc3e0f

Please sign in to comment.