numo-random 0.6.2 → 0.7.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/ext/numo/random/ext.cpp +1 -1
- data/ext/numo/random/ext.hpp +1 -1
- data/lib/numo/random/version.rb +1 -1
- data/lib/numo/random.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2180e7cc41c4094a7fd90137ab753f81dd19ea87d016787ad0b9ac6d46e3eda
|
|
4
|
+
data.tar.gz: 2d4413ce255b7a389aff12110b9959f258fe852726547c2f1ebf156c5ee0e816
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c358d0d5113ad3b1cb45fd0bf64b03238aa036bff61198726b7801c7d516d3d665b5c6b463a231d712cb5bc39af015b8c779c93949812a22489da53b06edc52
|
|
7
|
+
data.tar.gz: 311f7b5d46dda3a0a18390b0955592834739f743fd9a5fdc97d058355dab1aef3d3a7c365f5f73a362e264de1cbbdf1938ebae110680b0b1e3bf2527e5cafc0c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [[0.7.0](https://github.com/yoshoku/numo-random/compare/v0.6.2...v0.7.0)] - 2026-02-06
|
|
2
|
+
|
|
3
|
+
- relax numo-narray-alt version constraint to >= 0.9.10, < 0.11.0.
|
|
4
|
+
|
|
1
5
|
## [[0.6.2](https://github.com/yoshoku/numo-random/compare/v0.6.1...v0.6.2)] - 2025-11-19
|
|
2
6
|
|
|
3
7
|
- Fix to use require for compatibility with distributions installing extensions separately.
|
data/ext/numo/random/ext.cpp
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Numo::Random provides random number generation with several distributions for Numo::NArray.
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c) 2022-
|
|
4
|
+
* Copyright (c) 2022-2026 Atsushi Tatsuma
|
|
5
5
|
*
|
|
6
6
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
* you may not use this file except in compliance with the License.
|
data/ext/numo/random/ext.hpp
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Numo::Random provides random number generation with several distributions for Numo::NArray.
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c) 2022-
|
|
4
|
+
* Copyright (c) 2022-2026 Atsushi Tatsuma
|
|
5
5
|
*
|
|
6
6
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
* you may not use this file except in compliance with the License.
|
data/lib/numo/random/version.rb
CHANGED
data/lib/numo/random.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
require 'numo/narray/alt'
|
|
4
4
|
|
|
5
5
|
require_relative 'random/version'
|
|
6
|
-
# On
|
|
6
|
+
# On RHEL-based Linux distributions, native extensions are installed in a separate
|
|
7
7
|
# directory from Ruby code, so use require to load them.
|
|
8
8
|
require 'numo/random/ext'
|
|
9
9
|
require_relative 'random/generator'
|
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.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
@@ -13,16 +13,22 @@ dependencies:
|
|
|
13
13
|
name: numo-narray-alt
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
18
|
version: 0.9.10
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 0.11.0
|
|
19
22
|
type: :runtime
|
|
20
23
|
prerelease: false
|
|
21
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
25
|
requirements:
|
|
23
|
-
- - "
|
|
26
|
+
- - ">="
|
|
24
27
|
- !ruby/object:Gem::Version
|
|
25
28
|
version: 0.9.10
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 0.11.0
|
|
26
32
|
description: Numo::Random provides random number generation with several distributions
|
|
27
33
|
for Numo::NArray.
|
|
28
34
|
email:
|
|
@@ -53,7 +59,7 @@ metadata:
|
|
|
53
59
|
homepage_uri: https://github.com/yoshoku/numo-random
|
|
54
60
|
source_code_uri: https://github.com/yoshoku/numo-random
|
|
55
61
|
changelog_uri: https://github.com/yoshoku/numo-random/blob/main/CHANGELOG.md
|
|
56
|
-
documentation_uri: https://gemdocs.org/gems/numo-random/0.
|
|
62
|
+
documentation_uri: https://gemdocs.org/gems/numo-random/0.7.0/
|
|
57
63
|
rubygems_mfa_required: 'true'
|
|
58
64
|
rdoc_options: []
|
|
59
65
|
require_paths:
|
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
75
|
- !ruby/object:Gem::Version
|
|
70
76
|
version: '0'
|
|
71
77
|
requirements: []
|
|
72
|
-
rubygems_version:
|
|
78
|
+
rubygems_version: 4.0.3
|
|
73
79
|
specification_version: 4
|
|
74
80
|
summary: Numo::Random provides random number generation with several distributions
|
|
75
81
|
for Numo::NArray.
|