Skip to content

Commit

Permalink
feat: remove Renovate and update supported Ruby versions
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
corybuecker committed Jan 18, 2025
1 parent 97f380f commit f9fa52d
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 22 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
strategy:
matrix:
ruby:
- 3.1.5
- 3.2.4
- 3.3.1
- 3.2.6
- 3.3.7
- 3.4.1
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: gem install bundler --version 2.5.5 --no-document
- run: gem install bundler --version 2.6.3 --no-document
- run: bundle
- run: rake
18 changes: 9 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
PATH
remote: .
specs:
ruby_native_statistics (1.1.0)
ruby_native_statistics (1.1.1)
rake-compiler (~> 1.2)

GEM
remote: https://rubygems.org/
specs:
ansi (1.5.0)
builder (3.2.4)
docile (1.4.0)
minitest (5.21.2)
minitest-reporters (1.6.1)
builder (3.3.0)
docile (1.4.1)
minitest (5.25.4)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
rake (13.1.0)
rake-compiler (1.2.6)
rake (13.2.1)
rake-compiler (1.2.9)
rake
ruby-progressbar (1.13.0)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov-html (0.13.1)
simplecov-lcov (0.8.0)
simplecov_json_formatter (0.1.4)

Expand All @@ -40,4 +40,4 @@ DEPENDENCIES
simplecov-lcov (~> 0.8)

BUNDLED WITH
2.5.5
2.6.3
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 1.1.1

- Update all supported Ruby versions
- Update all dependencies

# Version 1.1.0

- Fix percentile bug reported by @Gbird22
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby_native_statistics/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RubyNativeStatistics
VERSION = "1.1.0"
VERSION = "1.1.1"
end
6 changes: 0 additions & 6 deletions renovate.json

This file was deleted.

3 changes: 1 addition & 2 deletions ruby_native_statistics.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ Gem::Specification.new do |spec|
spec.summary = "High performance, native (C) implementations of various statistical functions."
spec.homepage = "https://github.com/corybuecker/ruby-native-statistics"

spec.required_ruby_version = ">= 3.0.3"
spec.required_ruby_version = ">= 3.2.6"

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

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/changelog.md"

Expand Down

0 comments on commit f9fa52d

Please sign in to comment.