Skip to content

Commit

Permalink
Finish 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Sep 1, 2023
2 parents 4c1468c + b02df4b commit b73d843
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ gem 'json-ld-preloaded', git: "https://github.com/ruby-rdf/json-ld-preloaded",
gem "ld-patch", git: "https://github.com/ruby-rdf/ld-patch", branch: "develop"
gem "rdf", git: "https://github.com/ruby-rdf/rdf", branch: "develop"
gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop"
gem 'rdf-hamster-repo', git: 'https://github.com/ruby-rdf/rdf-hamster-repo', branch: 'develop'
gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
gem 'rdf-json', git: "https://github.com/ruby-rdf/rdf-json", branch: "develop"
gem 'rdf-microdata', git: "https://github.com/ruby-rdf/rdf-microdata", branch: "develop"
gem 'rdf-n3', git: "https://github.com/ruby-rdf/rdf-n3", branch: "develop"
gem 'rdf-normalize', git: "https://github.com/ruby-rdf/rdf-normalize", branch: "develop"
gem 'rdf-ordered-repo', git: 'https://github.com/ruby-rdf/rdf-ordered-repo', branch: 'develop'
gem 'rdf-rdfa', git: "https://github.com/ruby-rdf/rdf-rdfa", branch: "develop"
gem 'rdf-rdfxml', git: "https://github.com/ruby-rdf/rdf-rdfxml", branch: "develop"
gem 'rdf-reasoner', git: "https://github.com/ruby-rdf/rdf-reasoner", branch: "develop"
Expand All @@ -25,6 +27,7 @@ gem 'rdf-trix', git: "https://github.com/ruby-rdf/rdf-trix",
gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
gem 'rdf-vocab', git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop"
gem 'rdf-xsd', git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop"
gem 'shacl', git: "https://github.com/ruby-rdf/shacl", branch: "develop"
gem 'shex', git: "https://github.com/ruby-rdf/shex", branch: "develop"
gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop"
gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ operation and details of the content negotiation.

## Dependencies

* [Sinatra](https://rubygems.org/gems/sinatra) (~> 2.0)
* [Rack::LinkedData](https://rubygems.org/gems/rack-linkeddata) (~> 3.1)
* [Sinatra](https://rubygems.org/gems/sinatra) (~> 2.1)
* [Rack::LinkedData](https://rubygems.org/gems/rack-linkeddata) (~> 3.3)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.1
3.3.0
6 changes: 3 additions & 3 deletions sinatra-linkeddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Gem::Specification.new do |gem|
gem.executables = %w()
gem.require_paths = %w(lib)

gem.required_ruby_version = '>= 2.6'
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rack-linkeddata', '~> 3.2', '>= 3.2.3'
gem.add_runtime_dependency 'sinatra', '~> 3.0'
gem.add_runtime_dependency 'rack-linkeddata', '~> 3.3'
gem.add_runtime_dependency 'sinatra', '~> 3.1'

gem.add_development_dependency 'yard' , '~> 0.9'
gem.add_development_dependency 'rspec', '~> 3.12'
Expand Down

0 comments on commit b73d843

Please sign in to comment.