ruby_native_statistics 2.0.0.rc.2-aarch64-linux → 2.0.1-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '086d4d06bdd03a84eb5b22a90b50de4f6a65661ac132be97fb2668dc9b6d0035'
4
- data.tar.gz: e83bb978652007068875298311128851e1389cf660213cfee2670a8fd4dba176
3
+ metadata.gz: 4498ffecd077851f4ed8807be57f0fc3bd0de9625fe44af85b2c33b806e2c56e
4
+ data.tar.gz: 2d2954b360e1ff2b7395c4e02baaef1106b29fc30308683957a6fffe4253cc11
5
5
  SHA512:
6
- metadata.gz: 331f086c584a60a83faec19c20b5e8a35803d2b5f10a602e19182b84b870fb72ce629ff07d858aca4527bed8af8e38348da8b2ce78dfe36c22d2d2e1d01fb69c
7
- data.tar.gz: d78cbef704d196b53dc3e5d7f190c641d80fa3114c74158d714d2d3a6ff802535c94d1127b604d9e0c4c6183af3339dab3644348b7db04e5a490a417b04cb823
6
+ metadata.gz: d93661233d92d0183622e4c410f0267035fd878d016c3cb66bcea52a85f5c044059b5e888b3bc5ff530a26ce8b6b1d75b169c67de849f59942e2da5b472e1115
7
+ data.tar.gz: 125ac453f2511e6419ccb625ac3ed2525a66a466cdb29424ec3b22ea4c7c38995cda2bb4811ee8ff2bebe56b6191f773eb173aa2a187bd9cd83eb53a1f97f491
data/README.md CHANGED
@@ -57,6 +57,10 @@ If you found a bug or need a particular function, please let me know! I work on
57
57
  # calculate percentile
58
58
  p r.percentile(0.3333)
59
59
 
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
+
60
64
  ## Implementation notes
61
65
 
62
66
  ### Percentile
data/changelog.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Version 2.0.1
2
+
3
+ - Update Rust dependencies to support Ruby 4.0.1
4
+
1
5
  # Version 2.0.0
2
6
 
3
7
  - 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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyNativeStatistics
4
- VERSION = '2.0.0.rc.2'
4
+ VERSION = '2.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_native_statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc.2
4
+ version: 2.0.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Cory Buecker
@@ -16,7 +16,7 @@ dependencies:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
18
  version: '1.3'
19
- type: :runtime
19
+ type: :development
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
@@ -43,14 +43,14 @@ dependencies:
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '5.21'
46
+ version: '6.0'
47
47
  type: :development
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '5.21'
53
+ version: '6.0'
54
54
  description: A Ruby gem providing high-performance statistical functions implemented
55
55
  in Rust for better performance than pure Ruby implementations.
56
56
  email: