Skip to content

Commit e0873ab

Browse files
committed
bump to 2.3.0-rc1 everywhere as listed in devnotes
1 parent cb17672 commit e0873ab

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.19...3.30)
22
project(
33
FINUFFT
4-
VERSION 2.2.0
4+
VERSION 2.3.0-rc1
55
LANGUAGES C CXX)
66

77
# windows MSVC runtime flags policy

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
# built documents.
7575
#
7676
# The short X.Y version.
77-
version = u'2.2'
77+
version = u'2.3-rc1'
7878
# The full version, including alpha/beta/rc tags.
79-
release = u'2.2.0'
79+
release = u'2.3.0-rc1'
8080

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

docs/install.rst

Lines changed: 2 additions & 2 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/finufft@2.2")
54+
CPMAddPackage("gh:flatironinstitute/finufft@2.3.0-rc1")
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.2
60+
GIT_TAG 2.3.0-rc1
6161
GIT_SHALLOW Yes
6262
GIT_PROGRESS Yes
6363
EXCLUDE_FROM_ALL Yes

include/finufft/defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
// ------------- Library-wide algorithm parameter settings ----------------
6666

6767
// Library version (is a string)
68-
#define FINUFFT_VER "2.2.0"
68+
#define FINUFFT_VER "2.3.0-rc1"
6969

7070
// Smallest possible kernel spread width per dimension, in fine grid points
7171
// (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.2.0
2+
% Version 2.3.0-rc1
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
@@ -8,4 +8,4 @@
88
"nufft3d1", "nufft3d2",
99
"Plan"]
1010

11-
__version__ = '2.2.0'
11+
__version__ = '2.3.0-rc1'

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.2.0'
20+
__version__ = '2.3.0-rc1'

0 commit comments

Comments
 (0)