Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/branch-protection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- macos-latest
- ubuntu-24.04-arm
ruby:
- 3.2.8
- 3.3.8
- 3.4.4
- 3.3.10
- 3.4.8
- 4.0.1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
Expand Down
160 changes: 51 additions & 109 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
ruby_native_statistics (2.0.0)
rb_sys (~> 0.9.91)
ruby_native_statistics (2.0.1)
rb_sys (~> 0.9.94)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 2.0.1

- Update Rust dependencies to support Ruby 4.0.1

# Version 2.0.0

- Replace the C-based implementation with a Rust-based implementation. The public API is mostly unchanged (see README.md) with the exception of the error messages.
Expand Down
8 changes: 4 additions & 4 deletions ext/ruby_native_statistics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ruby_native_statistics"
version = "2.0.0"
version = "2.0.1"
edition = "2024"

[lib]
Expand All @@ -14,6 +14,6 @@ rb-sys-env = { version = "0.2" }
rb-sys-test-helpers = { version = "0.3" }

[dependencies]
magnus = { version = "0.8.0" }
rb-sys = "0.9.117"
thiserror = "2.0.16"
magnus = { version = "0.8.2" }
rb-sys = "0.9.124"
thiserror = "2.0.18"
2 changes: 1 addition & 1 deletion lib/ruby_native_statistics/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RubyNativeStatistics
VERSION = '2.0.0'
VERSION = '2.0.1'
end
2 changes: 1 addition & 1 deletion ruby_native_statistics.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 3.2.8'

spec.add_dependency 'rb_sys', '~> 0.9.91'
spec.add_dependency 'rb_sys', '~> 0.9.94'

spec.add_development_dependency 'rake-compiler', '~> 1.3'
spec.add_development_dependency "rake", "~> 13.0"
Expand Down