Skip to content

Commit 1ddc4a6

Browse files
authored
chore: update Rust dependencies (#99)
release 2.0.1
1 parent 68b3142 commit 1ddc4a6

7 files changed

Lines changed: 66 additions & 120 deletions

File tree

.github/workflows/branch-protection.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- macos-latest
1717
- ubuntu-24.04-arm
1818
ruby:
19-
- 3.2.8
20-
- 3.3.8
21-
- 3.4.4
19+
- 3.3.10
20+
- 3.4.8
21+
- 4.0.1
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd

Cargo.lock

Lines changed: 51 additions & 109 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
ruby_native_statistics (2.0.0)
5-
rb_sys (~> 0.9.91)
4+
ruby_native_statistics (2.0.1)
5+
rb_sys (~> 0.9.94)
66

77
GEM
88
remote: https://rubygems.org/

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 2.0.1
2+
3+
- Update Rust dependencies to support Ruby 4.0.1
4+
15
# Version 2.0.0
26

37
- 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.

ext/ruby_native_statistics/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruby_native_statistics"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
edition = "2024"
55

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

1616
[dependencies]
17-
magnus = { version = "0.8.0" }
18-
rb-sys = "0.9.117"
19-
thiserror = "2.0.16"
17+
magnus = { version = "0.8.2" }
18+
rb-sys = "0.9.124"
19+
thiserror = "2.0.18"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RubyNativeStatistics
4-
VERSION = '2.0.0'
4+
VERSION = '2.0.1'
55
end

ruby_native_statistics.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.platform = Gem::Platform::RUBY
3434
spec.required_ruby_version = '>= 3.2.8'
3535

36-
spec.add_dependency 'rb_sys', '~> 0.9.91'
36+
spec.add_dependency 'rb_sys', '~> 0.9.94'
3737

3838
spec.add_development_dependency 'rake-compiler', '~> 1.3'
3939
spec.add_development_dependency "rake", "~> 13.0"

0 commit comments

Comments
 (0)