numo-pocketfft 0.5.0 → 0.5.1

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: 042d6f76a1896b32ca3479729983abffc716335b9a22ad1f6afbfa905eb8820c
4
- data.tar.gz: a431e5e9741d2cc66f0c1f7186a6c3f40f652869dfbebcd06077aa27902ca629
3
+ metadata.gz: 7086fd0601883662019b1c7cbab7a043709f580fdffc2083e37ebfbe72202886
4
+ data.tar.gz: f922f4c433dc636e1932dc65ed24d25a62f5ad8b450aea64d9f256775aa41b83
5
5
  SHA512:
6
- metadata.gz: 90ea6325fcb6cdf457d82a315d0e8ef60d3525be4fe65b16ff8a154e3385d6dcddf7ab2902cbfcf3fe9105821497649505aa31be6272ecd085cef558668a4ae2
7
- data.tar.gz: 51188d707d5a9f72da687d4c5f2437bd2d18318312228d52e067b880b9129f56c7a8358552367c7418ed63bd6a5b207a8f35294f9192fa1585648fd10c986f5b
6
+ metadata.gz: a2e3eedc4cc59e31dcc59ffcfe653d95c9db6c1f41d9d3e76b60a7f3a7009a97f2c9c9721d0d83b8f10a74386427d1c79b19955023fbd5b25810bee2943efaa9
7
+ data.tar.gz: 4216f83ed2bdb87a5f5e48844b20f21d60cc2652bff23dfa27af81316ef32e7feaddee66ffeeaeca48f41290906d6927923a1114026171a573c8a807924c549b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 0.5.1
2
+
3
+ - Set the required version of numo-narray-alt to 0.9.9 or higher.
4
+ - Change require statement to explicitly load numo/narray/alt.
5
+
1
6
  # 0.5.0
2
7
 
3
8
  **Breaking change**
@@ -1,5 +1,5 @@
1
1
  require 'mkmf'
2
- require 'numo/narray'
2
+ require 'numo/narray/alt'
3
3
 
4
4
  $LOAD_PATH.each do |lp|
5
5
  if File.exist?(File.join(lp, 'numo/numo/narray.h'))
@@ -15,8 +15,8 @@ end
15
15
 
16
16
  if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
17
17
  $LOAD_PATH.each do |lp|
18
- if File.exist?(File.join(lp, 'numo/libnarray.a'))
19
- $LDFLAGS = "-L#{lp}/numo #{$LDFLAGS}"
18
+ if File.exist?(File.join(lp, 'numo/narray/libnarray.a'))
19
+ $LDFLAGS = "-L#{lp}/numo/narray #{$LDFLAGS}"
20
20
  break
21
21
  end
22
22
  end
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::Pocketfft is the module that has functions for Fourier transform.
6
6
  module Pocketfft
7
7
  # The version of Numo::Pocketfft you are using.
8
- VERSION = '0.5.0'
8
+ VERSION = '0.5.1'
9
9
  end
10
10
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'numo/narray'
3
+ require 'numo/narray/alt'
4
4
  require 'numo/pocketfft/version'
5
5
  require 'numo/pocketfft/pocketfftext'
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-pocketfft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: 0.9.3
18
+ version: 0.9.9
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: 0.9.3
25
+ version: 0.9.9
26
26
  description: 'Numo::Pocketfft provides functions for descrete Fourier Transform based
27
27
  on pocketfft.
28
28
 
@@ -53,8 +53,9 @@ metadata:
53
53
  homepage_uri: https://github.com/yoshoku/numo-pocketfft
54
54
  changelog_uri: https://github.com/yoshoku/numo-pocketfft/blob/main/CHANGELOG.md
55
55
  source_code_uri: https://github.com/yoshoku/numo-pocketfft
56
- documentation_uri: https://gemdocs.org/gems/numo-pocketfft/0.5.0/
56
+ documentation_uri: https://gemdocs.org/gems/numo-pocketfft/0.5.1/
57
57
  bug_tracker_uri: https://github.com/yoshoku/numo-pocketfft/issues
58
+ rubygems_mfa_required: 'true'
58
59
  rdoc_options: []
59
60
  require_paths:
60
61
  - lib