Skip to content

Commit dcbebe8

Browse files
authored
feat: remove Renovate and update supported Ruby versions (#30)
Release 1.1.1
1 parent 97f380f commit dcbebe8

File tree

7 files changed

+26
-22
lines changed

7 files changed

+26
-22
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "bundler"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
matrix:
1515
ruby:
16-
- 3.1.5
17-
- 3.2.4
18-
- 3.3.1
16+
- 3.2.6
17+
- 3.3.7
18+
- 3.4.1
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
24-
- run: gem install bundler --version 2.5.5 --no-document
24+
- run: gem install bundler --version 2.6.3 --no-document
2525
- run: bundle
2626
- run: rake

Gemfile.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
PATH
22
remote: .
33
specs:
4-
ruby_native_statistics (1.1.0)
4+
ruby_native_statistics (1.1.1)
55
rake-compiler (~> 1.2)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
1010
ansi (1.5.0)
11-
builder (3.2.4)
12-
docile (1.4.0)
13-
minitest (5.21.2)
14-
minitest-reporters (1.6.1)
11+
builder (3.3.0)
12+
docile (1.4.1)
13+
minitest (5.25.4)
14+
minitest-reporters (1.7.1)
1515
ansi
1616
builder
1717
minitest (>= 5.0)
1818
ruby-progressbar
19-
rake (13.1.0)
20-
rake-compiler (1.2.6)
19+
rake (13.2.1)
20+
rake-compiler (1.2.9)
2121
rake
2222
ruby-progressbar (1.13.0)
2323
simplecov (0.22.0)
2424
docile (~> 1.1)
2525
simplecov-html (~> 0.11)
2626
simplecov_json_formatter (~> 0.1)
27-
simplecov-html (0.12.3)
27+
simplecov-html (0.13.1)
2828
simplecov-lcov (0.8.0)
2929
simplecov_json_formatter (0.1.4)
3030

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

4242
BUNDLED WITH
43-
2.5.5
43+
2.6.3

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 1.1.1
2+
3+
- Update all supported Ruby versions
4+
- Update all dependencies
5+
16
# Version 1.1.0
27

38
- Fix percentile bug reported by @Gbird22
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module RubyNativeStatistics
2-
VERSION = "1.1.0"
2+
VERSION = "1.1.1"
33
end

renovate.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

ruby_native_statistics.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ 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 = ">= 3.0.3"
13+
spec.required_ruby_version = ">= 3.2.6"
1414

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

17-
spec.metadata["homepage_uri"] = spec.homepage
1817
spec.metadata["source_code_uri"] = spec.homepage
1918
spec.metadata["changelog_uri"] = "#{spec.homepage}/changelog.md"
2019

0 commit comments

Comments
 (0)