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 99817cd + dfd3981 commit 035e407
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 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
12 changes: 7 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
source "https://rubygems.org"
source 'https://rubygems.org'

gemspec

gem 'rack-rdf', git: "https://github.com/ruby-rdf/rack-rdf", branch: "develop"
gem "rdf", git: "https://github.com/ruby-rdf/rdf", branch: "develop"
gem 'rdf-turtle', git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
gem 'rdf', git: 'https://github.com/ruby-rdf/rdf.git', branch: 'develop'
gem 'rack-rdf', git: 'https://github.com/ruby-rdf/rack-rdf.git', branch: 'develop'

group :development do
gem "byebug", platforms: :mri
gem 'rdf-turtle', git: 'https://github.com/ruby-rdf/rdf-turtle.git', branch: 'develop'
gem 'ebnf', git: 'https://github.com/dryruby/ebnf', branch: 'develop'
gem 'sxp', git: 'https://github.com/dryruby/sxp.rb', branch: 'develop'
gem 'byebug', platforms: :mri
end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ operation and details of the content negotiation.

## Dependencies

* [Sinatra](https://rubygems.org/gems/sinatra) (~> 3.0)
* [Rack::RDF](https://rubygems.org/gems/rack-rdf) (~> 3.2)
* [Sinatra](https://rubygems.org/gems/sinatra) (~> 3.1)
* [Rack::RDF](https://rubygems.org/gems/rack-rdf) (~> 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-rdf.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-rdf', '~> 3.2', '>= 3.2.3'
gem.add_runtime_dependency 'sinatra', '~> 3.0', '>= 3.0.5'
gem.add_runtime_dependency 'rack-rdf', '~> 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 035e407

Please sign in to comment.