Skip to content

Commit 6190813

Browse files
committed
Finish 1.0.0
2 parents 3a7cda2 + ee3bf33 commit 6190813

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 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
@@ -33,6 +33,6 @@ jobs:
3333
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
3434
- name: Coveralls GitHub Action
3535
uses: coverallsapp/github-action@master
36-
if: "matrix.ruby == '3.0'"
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
@@ -2,7 +2,7 @@ source "https://rubygems.org"
22
gemspec
33

44
group :development, :test do
5-
gem 'simplecov', '~> 0.21', platforms: :mri
5+
gem 'simplecov', '~> 0.22', platforms: :mri
66
gem 'simplecov-lcov', '~> 0.8', platforms: :mri
77
gem 'benchmark-ips'
88
gem 'rake'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ An implementation of the JSON Canonicalization Scheme for Ruby
33

44
Implements [RFC8785](https://datatracker.ietf.org/doc/html/rfc8785) (JSON Canonicalization Scheme) in Ruby.
55

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

@@ -66,7 +66,7 @@ Full documentation available on [GitHub](https://dryruby.github.io/json-canonica
6666
* {JSON::Canonicalization}
6767

6868
## Dependencies
69-
* [Ruby](http://ruby-lang.org/) (>= 2.6)
69+
* [Ruby](http://ruby-lang.org/) (>= 3.0)
7070
* [JSON](https://rubygems.org/gems/json) (>= 2.6)
7171

7272
## Author

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2
1+
1.0.0

json-canonicalization.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Gem::Specification.new do |gem|
2323
gem.files = %w(AUTHORS README.md LICENSE VERSION) + Dir.glob('lib/**/*.rb')
2424
gem.test_files = Dir.glob('spec/**/*.rb') + Dir.glob('spec/**/*.json')
2525

26-
gem.required_ruby_version = '>= 2.6'
26+
gem.required_ruby_version = '>= 3.0'
2727
gem.requirements = []
28-
gem.add_development_dependency 'rspec', '~> 3.10'
28+
gem.add_development_dependency 'rspec', '~> 3.12'
2929
gem.add_development_dependency 'yard' , '~> 0.9'
3030

3131
gem.post_install_message = nil

0 commit comments

Comments
 (0)