Skip to content

Commit 2c09122

Browse files
authored
chore: bump version to 2.0.0-rc.3 and fix rake-compiler dependency (#53)
- Bump version from 2.0.0-rc.2 to 2.0.0-rc.3 in all relevant files - Move rake-compiler from runtime to development dependency - Add build notes about libclang requirement to README
1 parent ec43ab4 commit 2c09122

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ PATH
22
remote: .
33
specs:
44
ruby_native_statistics (2.0.0.rc.2)
5-
rake-compiler (~> 1.3)
65
rb_sys (~> 0.9.91)
76

87
GEM
@@ -23,6 +22,7 @@ PLATFORMS
2322
DEPENDENCIES
2423
minitest (~> 5.21)
2524
rake (~> 13.0)
25+
rake-compiler (~> 1.3)
2626
ruby_native_statistics!
2727

2828
BUNDLED WITH

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ If you found a bug or need a particular function, please let me know! I work on
5757
# calculate percentile
5858
p r.percentile(0.3333)
5959

60+
## Build notes
61+
62+
If you are installing the source vesion of the Gem, be sure to have libclang, e.g. `libclang-dev`, installed on your system.
63+
6064
## Implementation notes
6165

6266
### Percentile

ext/ruby_native_statistics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruby_native_statistics"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
edition = "2024"
55

66
[lib]
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.rc.2'
4+
VERSION = '2.0.0.rc.3'
55
end

ruby_native_statistics.gemspec

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

36-
spec.add_dependency 'rake-compiler', '~> 1.3'
3736
spec.add_dependency 'rb_sys', '~> 0.9.91'
3837

38+
spec.add_development_dependency 'rake-compiler', '~> 1.3'
3939
spec.add_development_dependency "rake", "~> 13.0"
4040
spec.add_development_dependency 'minitest', '~> 5.21'
4141

0 commit comments

Comments
 (0)