Skip to content

Commit 0071f4e

Browse files
authored
Bump supported versions (#20)
1 parent 1e92325 commit 0071f4e

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
strategy:
1414
matrix:
1515
ruby:
16-
- 2.6.9
17-
- 2.7.5
18-
- 3.0.3
19-
- 3.1.0
16+
- 2.7.7
17+
- 3.0.5
18+
- 3.1.3
19+
- 3.2.1
2020
steps:
2121
- uses: actions/checkout@v2
22-
22+
2323
- uses: ruby/setup-ruby@v1
2424
with:
2525
ruby-version: ${{ matrix.ruby }}
2626

27-
- run: gem install bundler --version 2.3.4 --no-document
27+
- run: gem install bundler --version 2.4.7 --no-document
2828
- run: bundle
2929
- run: rake

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ gemspec
44

55
gem "rake", "~> 13.0"
66
gem "minitest", "~> 5.15"
7-
gem "minitest-reporters", "~> 1.4"
7+
gem "minitest-reporters", "~> 1.6"
88
gem "rake-compiler", "~> 1.1"
99
gem "simplecov", "~> 0.21", require: false
1010
gem "simplecov-lcov", "~> 0.8", require: false

Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@ GEM
99
ansi (1.5.0)
1010
builder (3.2.4)
1111
docile (1.4.0)
12-
minitest (5.15.0)
13-
minitest-reporters (1.4.3)
12+
minitest (5.17.0)
13+
minitest-reporters (1.6.0)
1414
ansi
1515
builder
1616
minitest (>= 5.0)
1717
ruby-progressbar
1818
rake (13.0.6)
19-
rake-compiler (1.1.7)
19+
rake-compiler (1.2.1)
2020
rake
2121
ruby-progressbar (1.11.0)
22-
simplecov (0.21.2)
22+
simplecov (0.22.0)
2323
docile (~> 1.1)
2424
simplecov-html (~> 0.11)
2525
simplecov_json_formatter (~> 0.1)
2626
simplecov-html (0.12.3)
2727
simplecov-lcov (0.8.0)
28-
simplecov_json_formatter (0.1.3)
28+
simplecov_json_formatter (0.1.4)
2929

3030
PLATFORMS
31-
ruby
31+
arm64-darwin-22
3232

3333
DEPENDENCIES
3434
minitest (~> 5.15)
@@ -40,4 +40,4 @@ DEPENDENCIES
4040
simplecov-lcov (~> 0.8)
4141

4242
BUNDLED WITH
43-
2.3.3
43+
2.4.7

ruby_native_statistics.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
1010
spec.summary = "High performance, native (C) implementations of various statistical functions."
1111
spec.homepage = "https://github.com/corybuecker/ruby-native-statistics"
1212

13-
spec.required_ruby_version = Gem::Requirement.new(">= 2.6")
13+
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.7")
1414

1515
spec.metadata["allowed_push_host"] = "https://rubygems.org"
1616

0 commit comments

Comments
 (0)