Skip to content

Commit 3ba0441

Browse files
committed
Updates for version 0.4.0 with minimum Ruby version 3.0.
1 parent 0381aff commit 3ba0441

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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 }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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+
0.4.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)