File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1414 runs-on : ubuntu-latest
1515 strategy :
1616 matrix :
17- ruby : ['3.3', '3.4']
17+ ruby : ['3.3', '3.4', '4.0' ]
1818 steps :
1919 - uses : actions/checkout@v6
2020 - uses : ruby/setup-ruby@v1
Original file line number Diff line number Diff line change 3636 uses : github/codeql-action/analyze@v4
3737 - uses : ruby/setup-ruby@v1
3838 with :
39- ruby-version : ' 3.4 '
39+ ruby-version : ' 4.0 '
4040 bundler-cache : true
4141 - name : " Run rufo code formatting checks"
4242 run : |
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515 spec . email = "%w[ruby@q9f.cc]"
1616 spec . extensions << "ext/digest/extconf.rb"
1717 spec . platform = Gem ::Platform ::RUBY
18- spec . required_ruby_version = ">= 3.0" , "< 4.0"
18+ spec . required_ruby_version = ">= 3.0"
1919 spec . license = "Apache-2.0"
2020 spec . metadata = {
2121 "homepage_uri" => "https://github.com/q9f/keccak.rb" ,
@@ -34,6 +34,6 @@ Gem::Specification.new do |spec|
3434 "lib/**/*"
3535 ]
3636 spec . test_files = spec . files . grep %r{^(test|spec|features)/}
37- spec . add_development_dependency "bundler" , "~> 2.4"
37+ spec . add_development_dependency "bundler" , ">= 2.4"
3838 spec . add_development_dependency "test-unit" , "~> 3.6"
3939end
Original file line number Diff line number Diff line change 22
33module Digest
44 class Keccak
5- VERSION = "1.3.3 "
5+ VERSION = "1.3.4 "
66 end
77end
You can’t perform that action at this time.
0 commit comments