diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..219c13a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1a0ac7f..23fa620 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index 40777c5..8454d6e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) @@ -40,4 +40,4 @@ DEPENDENCIES simplecov-lcov (~> 0.8) BUNDLED WITH - 2.5.5 + 2.6.3 diff --git a/changelog.md b/changelog.md index 3cd0ee1..63c137b 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/lib/ruby_native_statistics/version.rb b/lib/ruby_native_statistics/version.rb index 75f4d62..e821567 100644 --- a/lib/ruby_native_statistics/version.rb +++ b/lib/ruby_native_statistics/version.rb @@ -1,3 +1,3 @@ module RubyNativeStatistics - VERSION = "1.1.0" + VERSION = "1.1.1" end diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 39a2b6e..0000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ] -} diff --git a/ruby_native_statistics.gemspec b/ruby_native_statistics.gemspec index eb30192..ef303c4 100644 --- a/ruby_native_statistics.gemspec +++ b/ruby_native_statistics.gemspec @@ -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"