Skip to content

Commit 5652c7f

Browse files
committed
Finish 1.3.0
2 parents bd24f37 + c250c28 commit 5652c7f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
22+
ruby: ['3.0', 3.1, 3.2, ruby-head, jruby]
2323
steps:
2424
- name: Clone repository
2525
uses: actions/checkout@v3
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run tests
3333
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
3434
- name: Coveralls GitHub Action
35-
uses: coverallsapp/github-action@v1.1.2
36-
if: "matrix.ruby == '3.0'"
35+
uses: coverallsapp/github-action@v2
36+
if: "matrix.ruby == '3.2'"
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ group :debug do
99
end
1010

1111
group :development, :test do
12-
gem 'simplecov', '~> 0.21', platforms: :mri
12+
gem 'simplecov', '~> 0.22', platforms: :mri
1313
gem 'simplecov-lcov', '~> 0.8', platforms: :mri
1414
end

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a Ruby implementation of a universal [S-expression][] parser.
44

5-
[![Gem Version](https://badge.fury.io/rb/sxp.png)](https:/badge.fury.io/rb/sxp)
5+
[![Gem Version](https://badge.fury.io/rb/sxp.svg)](https:/badge.fury.io/rb/sxp)
66
[![Build Status](https://github.com/dryruby/sxp.rb/workflows/CI/badge.svg?branch=develop)](https://github.com/dryruby/sxp.rb/actions?query=workflow%3ACI)
77
[![Coverage Status](https://coveralls.io/repos/dryruby/sxp.rb/badge.svg?branch=develop)](https://coveralls.io/r/dryruby/sxp.rb?branch=develop)
88

@@ -11,7 +11,7 @@ This is a Ruby implementation of a universal [S-expression][] parser.
1111
* Parses S-expressions in universal, [Scheme][], [Common Lisp][], or
1212
[SPARQL][] syntax.
1313
* Adds a `#to_sxp` method to Ruby objects.
14-
* Compatible with Ruby >= 2.6, Rubinius >= 3.0, and JRuby 9+.
14+
* Compatible with Ruby >= 3.0, Rubinius >= 3.0, and JRuby 9+.
1515

1616
## Basic syntax
1717

@@ -224,8 +224,8 @@ In addition to the standard datatypes, the SPARQL dialect supports the following
224224

225225
# Dependencies
226226

227-
* [Ruby](https:/ruby-lang.org/) (>= 2.6)
228-
* [RDF.rb](https:/rubygems.org/gems/rdf) (~> 3.2), only needed for SPARQL
227+
* [Ruby](https:/ruby-lang.org/) (>= 3.0)
228+
* [RDF.rb](https:/rubygems.org/gems/rdf) (~> 3.3), only needed for SPARQL
229229
S-expressions
230230

231231
# Installation

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.4
1+
1.3.0

sxp.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ Gem::Specification.new do |gem|
2828
gem.executables = %w(sxp2rdf sxp2json sxp2xml sxp2yaml)
2929
gem.require_paths = %w(lib)
3030

31-
gem.required_ruby_version = '>= 2.6'
31+
gem.required_ruby_version = '>= 3.0'
3232
gem.requirements = []
33-
gem.add_runtime_dependency 'rdf', '~> 3.2'
33+
gem.add_runtime_dependency 'rdf', '~> 3.3'
3434
gem.add_runtime_dependency 'matrix', '~> 0.4'
3535

36-
gem.add_development_dependency 'amazing_print', '~> 1.4'
36+
gem.add_development_dependency 'amazing_print', '~> 1.5'
3737
gem.add_development_dependency 'rspec', '~> 3.12'
3838
gem.add_development_dependency 'yard' , '~> 0.9'
3939

0 commit comments

Comments
 (0)