Skip to content

Commit ed5fb79

Browse files
committed
Finish 3.3.0
2 parents 7149d8c + 3a5a96f commit ed5fb79

File tree

6 files changed

+9
-16
lines changed

6 files changed

+9
-16
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,10 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
ruby:
26-
- 2.6
27-
- 2.7
28-
- "3.0"
29-
- 3.1
30-
- ruby-head
31-
- jruby
25+
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
3226
steps:
3327
- name: Clone repository
34-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
3529
- name: Set up Ruby
3630
uses: ruby/setup-ruby@v1
3731
with:

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Update gh-pages with docs
1111
steps:
1212
- name: Clone repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Set up Ruby
1515
uses: ruby/setup-ruby@v1
1616
with:

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ group 'development' do
99
gem 'rdf-isomorphic', github: "ruby-rdf/rdf-isomorphic", branch: "develop"
1010
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
1111
gem 'sxp', github: "dryruby/sxp.rb", branch: "develop"
12-
gem 'nokogiri', '~> 1.13', '>= 1.13.4'
1312
end
1413

1514
group :debug do

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# JSON-LD Preloaded
22
JSON-LD with preloaded contexts.
33

4-
[![Gem Version](https://badge.fury.io/rb/json-ld-preloaded.png)](https://badge.fury.io/rb/json-ld-preloaded)
4+
[![Gem Version](https://badge.fury.io/rb/json-ld-preloaded.svg)](https://badge.fury.io/rb/json-ld-preloaded)
55
[![Build Status](https://github.com/ruby-rdf/json-ld-preloaded/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/json-ld-preloaded/actions?query=workflow%3ACI)
66
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/json-ld-preloaded/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/json-ld-preloaded?branch=develop)
77
[![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.3.0

json-ld-preloaded.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Gem::Specification.new do |gem|
2626
gem.require_paths = %w(lib)
2727
gem.test_files = Dir.glob('spec/**/*.rb') + Dir.glob('spec/test-files/*')
2828

29-
gem.required_ruby_version = '>= 2.6'
29+
gem.required_ruby_version = '>= 3.0'
3030
gem.requirements = []
31-
gem.add_runtime_dependency 'rdf', '~> 3.2'
32-
gem.add_runtime_dependency 'json-ld', '~> 3.2'
33-
gem.add_development_dependency 'rspec', '~> 3.10'
31+
gem.add_runtime_dependency 'rdf', '~> 3.3'
32+
gem.add_runtime_dependency 'json-ld', '~> 3.3'
33+
gem.add_development_dependency 'rspec', '~> 3.12'
3434
gem.add_development_dependency 'yard' , '~> 0.9'
3535

3636
gem.post_install_message = nil

0 commit comments

Comments
 (0)