Skip to content

Commit 9629084

Browse files
committed
Update versions and CHANGELOG for 2.4.1 release
1 parent 87f2d3f commit 9629084

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CHANGELOG

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ If not stated, FINUFFT is assumed (cuFINUFFT <=1.3 is listed separately).
33

44
Master (working towards v2.5.0), 6/24/25
55

6+
V 2.4.1 7/8/25
7+
68
* Update Python cufinufft unit tests to use complex dtypes (Andén, #705).
79
* Python version of 2D Poisson solve tutorial (Julius Herb, #700).
810
* Cached the optimal thread number (# physical cores) to reduce system call
911
overhead in repeated small transforms (YuWei-CH, #697, fixing #693).
1012
* replaced LGPL-licensed Gauss-Legendre quadrature code by Apache2-licensed
1113
code adapted from Jason Kaye's cppdlr. CPU and GPU. PR #692 (Barnett).
12-
13-
V 2.4.1 (6/27/25)
1414
* Fix cufinufft importing bug found by @fzimmermann89 (Barbone, issue #707, PR #708)
1515

1616
V 2.4.0 (5/27/25)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.19...3.30)
2-
project(FINUFFT VERSION 2.4.0 LANGUAGES C CXX)
2+
project(FINUFFT VERSION 2.4.1 LANGUAGES C CXX)
33

44
# windows MSVC runtime flags policy
55
cmake_policy(SET CMP0091 NEW)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# The short X.Y version.
7777
version = u'2.4'
7878
# The full version, including alpha/beta/rc tags.
79-
release = u'2.4.0'
79+
release = u'2.4.1'
8080

8181
# The language for content autogenerated by Sphinx. Refer to documentation
8282
# for a list of supported languages.

docs/install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ Then add the following to your ``CMakeLists.txt``:
5151
.. code-block:: cmake
5252
5353
# short version
54-
CPMAddPackage("gh:flatironinstitute/[email protected].0")
54+
CPMAddPackage("gh:flatironinstitute/[email protected].1")
5555
5656
# alternative in case custom options are needed
5757
CPMAddPackage(
5858
NAME Finufft
5959
GIT_REPOSITORY https://github.com/flatironinstitute/finufft.git
60-
GIT_TAG 2.4.0
60+
GIT_TAG 2.4.1
6161
GIT_SHALLOW Yes
6262
GIT_PROGRESS Yes
6363
EXCLUDE_FROM_ALL Yes
@@ -79,7 +79,7 @@ Add the following to your ``CMakeLists.txt``:
7979
FetchContent_Declare(
8080
finufft
8181
GIT_REPOSITORY https://github.com/flatironinstitute/finufft.git
82-
GIT_TAG 2.4.0
82+
GIT_TAG 2.4.1
8383
)
8484
8585
# Make the content available

include/finufft/finufft_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ using UBIGINT = uint64_t;
7272
// ------------- Library-wide algorithm parameter settings ----------------
7373

7474
// Library version (is a string)
75-
#define FINUFFT_VER "2.4.0"
75+
#define FINUFFT_VER "2.4.1"
7676

7777
// Smallest possible kernel spread width per dimension, in fine grid points
7878
// (used only in spreadinterp.cpp)

matlab/Contents.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% FINUFFT: Flatiron Institute Nonuniform Fast Fourier Transform
2-
% Version 2.4.0
2+
% Version 2.4.1
33
%
44
% Basic and many-vector interfaces
55
% finufft1d1 - 1D complex nonuniform FFT of type 1 (nonuniform to uniform).

python/cufinufft/cufinufft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"nufft3d1", "nufft3d2", "nufft3d3",
1010
"Plan"]
1111

12-
__version__ = '2.4.0'
12+
__version__ = '2.4.1'

python/finufft/finufft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
from finufft._interfaces import nufft2d1,nufft2d2,nufft2d3
1818
from finufft._interfaces import nufft3d1,nufft3d2,nufft3d3
1919

20-
__version__ = '2.4.0'
20+
__version__ = '2.4.1'

0 commit comments

Comments
 (0)