numo-pocketfft 0.4.1 → 0.5.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: b5fa60c7c4f1066756e1e9d8b953623f12a5025a802855f299b22375922ccb67
4
- data.tar.gz: 17971400018c337cdaba02ab2a9564ddcd8a5fa96ca38473ac875a9ef99bec92
3
+ metadata.gz: 042d6f76a1896b32ca3479729983abffc716335b9a22ad1f6afbfa905eb8820c
4
+ data.tar.gz: a431e5e9741d2cc66f0c1f7186a6c3f40f652869dfbebcd06077aa27902ca629
5
5
  SHA512:
6
- metadata.gz: e3f8253555afff5c0b15e7c97a007df3bd4a6b468b0e535ac4696a97da9fda13178170b6403c9bb6c65ab4849961288a46d40ca358dfe71d4fafd89f48b90ab2
7
- data.tar.gz: a137be01ea73aac4cca32e7d79f784be9df59f4b2f844cf8cd950040ff09fd98e74b586fe9d097ed902ab05f114d4f4cc3d64451b4446fb44878525f38e2d765
6
+ metadata.gz: 90ea6325fcb6cdf457d82a315d0e8ef60d3525be4fe65b16ff8a154e3385d6dcddf7ab2902cbfcf3fe9105821497649505aa31be6272ecd085cef558668a4ae2
7
+ data.tar.gz: 51188d707d5a9f72da687d4c5f2437bd2d18318312228d52e067b880b9129f56c7a8358552367c7418ed63bd6a5b207a8f35294f9192fa1585648fd10c986f5b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.5.0
2
+
3
+ **Breaking change**
4
+
5
+ - Change dependency from numo-narray to [numo-narray-alt](https://github.com/yoshoku/numo-narray-alt).
6
+
1
7
  # 0.4.1
2
8
  - Fix build failure with Xcode 14 and Ruby 3.1.x.
3
9
 
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2019-2022 Atsushi Tatsuma
1
+ Copyright (c) 2019-2025 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
data/README.md CHANGED
@@ -1,10 +1,9 @@
1
1
  # Numo::Pocketfft
2
2
 
3
3
  [![Build Status](https://github.com/yoshoku/numo-pocketfft/workflows/build/badge.svg)](https://github.com/yoshoku/numo-pocketfft/actions?query=workflow%3Abuild)
4
- [![Coverage Status](https://coveralls.io/repos/github/yoshoku/numo-pocketfft/badge.svg?branch=main)](https://coveralls.io/github/yoshoku/numo-pocketfft?branch=main)
5
4
  [![Gem Version](https://badge.fury.io/rb/numo-pocketfft.svg)](https://badge.fury.io/rb/numo-pocketfft)
6
5
  [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/numo-pocketfft/blob/main/LICENSE.txt)
7
- [![Documentation](https://img.shields.io/badge/docs-rdoc.info-blue.svg)](https://yoshoku.github.io/numo-pocketfft/doc/)
6
+ [![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://yoshoku.github.io/numo-pocketfft/doc/)
8
7
 
9
8
  Numo::Pocketfft provides functions for performing descrete Fourier Transform with
10
9
  [Numo::NArray](https://github.com/ruby-numo/numo-narray) by using
@@ -13,6 +12,8 @@ Numo::Pocketfft provides functions for performing descrete Fourier Transform wit
13
12
  Note: There are other useful Ruby gems perform descrete Fourier Transform with Numo::NArray:
14
13
  [Numo::FFTW](https://github.com/ruby-numo/numo-fftw) and [Numo::FFTE](https://github.com/ruby-numo/numo-ffte) by Masahiro Tanaka.
15
14
 
15
+ Note: Since v0.5.0, this library uses [Numo::NArray Alternative](https://github.com/yoshoku/numo-narray-alt) instead of Numo::NArray as a dependency.
16
+
16
17
  ## Installation
17
18
 
18
19
  Numo::Pocketfft bundles pocketfft codes, so there is no need to install another external library in advance.
@@ -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.4.1'
8
+ VERSION = '0.5.0'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,29 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-pocketfft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-11-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
- name: numo-narray
13
+ name: numo-narray-alt
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - ">="
16
+ - - "~>"
18
17
  - !ruby/object:Gem::Version
19
- version: 0.9.1
18
+ version: 0.9.3
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
- - - ">="
23
+ - - "~>"
25
24
  - !ruby/object:Gem::Version
26
- version: 0.9.1
25
+ version: 0.9.3
27
26
  description: 'Numo::Pocketfft provides functions for descrete Fourier Transform based
28
27
  on pocketfft.
29
28
 
@@ -54,9 +53,8 @@ metadata:
54
53
  homepage_uri: https://github.com/yoshoku/numo-pocketfft
55
54
  changelog_uri: https://github.com/yoshoku/numo-pocketfft/blob/main/CHANGELOG.md
56
55
  source_code_uri: https://github.com/yoshoku/numo-pocketfft
57
- documentation_uri: https://yoshoku.github.io/numo-pocketfft/doc/
56
+ documentation_uri: https://gemdocs.org/gems/numo-pocketfft/0.5.0/
58
57
  bug_tracker_uri: https://github.com/yoshoku/numo-pocketfft/issues
59
- post_install_message:
60
58
  rdoc_options: []
61
59
  require_paths:
62
60
  - lib
@@ -71,8 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
69
  - !ruby/object:Gem::Version
72
70
  version: '0'
73
71
  requirements: []
74
- rubygems_version: 3.3.26
75
- signing_key:
72
+ rubygems_version: 3.6.9
76
73
  specification_version: 4
77
74
  summary: Numo::Pocketfft provides functions for descrete Fourier Transform based on
78
75
  pocketfft.