numo-random 0.7.0 → 0.8.0

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: c2180e7cc41c4094a7fd90137ab753f81dd19ea87d016787ad0b9ac6d46e3eda
4
- data.tar.gz: 2d4413ce255b7a389aff12110b9959f258fe852726547c2f1ebf156c5ee0e816
3
+ metadata.gz: 5a9f198cd2efe4ef1f65eba6520fcc798678f33ef9a8a18a320e99d9459debc2
4
+ data.tar.gz: b75cb10b2f68140b21a67ed8d136f80511554453346a5a6d6ebee537773c67b0
5
5
  SHA512:
6
- metadata.gz: 7c358d0d5113ad3b1cb45fd0bf64b03238aa036bff61198726b7801c7d516d3d665b5c6b463a231d712cb5bc39af015b8c779c93949812a22489da53b06edc52
7
- data.tar.gz: 311f7b5d46dda3a0a18390b0955592834739f743fd9a5fdc97d058355dab1aef3d3a7c365f5f73a362e264de1cbbdf1938ebae110680b0b1e3bf2527e5cafc0c
6
+ metadata.gz: 3b123e5f0270559915e63df030a592edecdb9665b29e229568d7600bd8e822a172b19cbe09d097f4333dc39c4153e21bd865d27667fd586b537914144408e843
7
+ data.tar.gz: fc247c074f33d6f8c01cc6b78822a400aabd6396667f20f0c426e17ca3614f04304d6c30e71d000ce469ca411adc3b13bc874fda55a2644bf54a7b0ae52f948b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [[0.8.0](https://github.com/yoshoku/numo-random/compare/v0.7.0...v0.8.0)] - 2026-07-05
2
+
3
+ - relax numo-narray-alt upper bound to < 0.12.0.
4
+
1
5
  ## [[0.7.0](https://github.com/yoshoku/numo-random/compare/v0.6.2...v0.7.0)] - 2026-02-06
2
6
 
3
7
  - relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
@@ -20,19 +20,6 @@ if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
20
20
  abort "libnarray.a not found." unless have_library("narray", "nary_new")
21
21
  end
22
22
 
23
- have_libcpp = false
24
- if RUBY_PLATFORM.include?('darwin')
25
- if have_library('c++')
26
- have_libcpp = true
27
- else
28
- warn 'libc++ is not found.'
29
- end
30
- end
31
-
32
- if !have_libcpp && !RUBY_PLATFORM.include?('mswin')
33
- warn 'libstdc++ is not found.' unless have_library('stdc++')
34
- end
35
-
36
23
  $CXXFLAGS << " -std=c++11"
37
24
  $INCFLAGS << " -I$(srcdir)/src"
38
25
  $VPATH << "$(srcdir)/src"
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Random
5
5
  # The version of Numo::Random you install.
6
- VERSION = '0.7.0'
6
+ VERSION = '0.8.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-random
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: 0.9.10
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: 0.11.0
21
+ version: 0.12.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: 0.9.10
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: 0.11.0
31
+ version: 0.12.0
32
32
  description: Numo::Random provides random number generation with several distributions
33
33
  for Numo::NArray.
34
34
  email:
@@ -59,7 +59,7 @@ metadata:
59
59
  homepage_uri: https://github.com/yoshoku/numo-random
60
60
  source_code_uri: https://github.com/yoshoku/numo-random
61
61
  changelog_uri: https://github.com/yoshoku/numo-random/blob/main/CHANGELOG.md
62
- documentation_uri: https://gemdocs.org/gems/numo-random/0.7.0/
62
+ documentation_uri: https://gemdocs.org/gems/numo-random/0.8.0/
63
63
  rubygems_mfa_required: 'true'
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 4.0.3
78
+ rubygems_version: 4.0.13
79
79
  specification_version: 4
80
80
  summary: Numo::Random provides random number generation with several distributions
81
81
  for Numo::NArray.