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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4208ed4ac8b83d7f15a55bc2d7419c928140920d8d77c49722bc9f8d15a506c
4
- data.tar.gz: 6cfca57abf2afedf7fb4437c77101c9adefb885145ce49131291d2f08c5f0d52
3
+ metadata.gz: c2180e7cc41c4094a7fd90137ab753f81dd19ea87d016787ad0b9ac6d46e3eda
4
+ data.tar.gz: 2d4413ce255b7a389aff12110b9959f258fe852726547c2f1ebf156c5ee0e816
5
5
  SHA512:
6
- metadata.gz: 8aaac5c7d6439ee89bf9784651b58801306aa0a83061523fdc91bdfdd98575b305d26befd7e71bd77e87efeaf8a34cf256eec9b778cf12d981bb3979c6332833
7
- data.tar.gz: e3c345a263c7c8ddb4ef6eb91c322640bddb073986b8d56c9b414d776b5324778f95bb5bd4e0e0bc81ef3241921990b5222b20db893fe6163da680fd3c275b6b
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.
@@ -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-2025 Atsushi Tatsuma
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.
@@ -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-2025 Atsushi Tatsuma
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.
@@ -3,6 +3,6 @@
3
3
  module Numo
4
4
  module Random
5
5
  # The version of Numo::Random you install.
6
- VERSION = '0.6.2'
6
+ VERSION = '0.7.0'
7
7
  end
8
8
  end
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 distributions like Rocky Linux, native extensions are installed in a separate
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.6.2
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.6.2/
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: 3.7.2
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.