Skip to content

Commit

Permalink
bump to 2.3.0-rc1 everywhere as listed in devnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahbarnett committed Aug 7, 2024
1 parent cb17672 commit e0873ab
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.19...3.30)
project(
FINUFFT
VERSION 2.2.0
VERSION 2.3.0-rc1

This comment has been minimized.

Copy link
@ahbarnett

ahbarnett Aug 7, 2024

Author Collaborator

is causing failure. Seems cmake project is way too restrictive: https://cmake.org/cmake/help/latest/command/project.html#command:project

This comment has been minimized.

Copy link
@ahbarnett

ahbarnett Aug 7, 2024

Author Collaborator

annoying since cmake versions themselves allow -rc1 etc.

LANGUAGES C CXX)

# windows MSVC runtime flags policy
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.2'
version = u'2.3-rc1'
# The full version, including alpha/beta/rc tags.
release = u'2.2.0'
release = u'2.3.0-rc1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ Then add the following to your ``CMakeLists.txt``:
.. code-block:: cmake
# short version
CPMAddPackage("gh:flatironinstitute/finufft@2.2")
CPMAddPackage("gh:flatironinstitute/finufft@2.3.0-rc1")
# alternative in case custom options are needed
CPMAddPackage(
NAME Finufft
GIT_REPOSITORY https://github.com/flatironinstitute/finufft.git
GIT_TAG 2.2
GIT_TAG 2.3.0-rc1
GIT_SHALLOW Yes
GIT_PROGRESS Yes
EXCLUDE_FROM_ALL Yes
Expand Down
2 changes: 1 addition & 1 deletion include/finufft/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
// ------------- Library-wide algorithm parameter settings ----------------

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

// Smallest possible kernel spread width per dimension, in fine grid points
// (used only in spreadinterp.cpp)
Expand Down
2 changes: 1 addition & 1 deletion matlab/Contents.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% FINUFFT: Flatiron Institute Nonuniform Fast Fourier Transform
% Version 2.2.0
% Version 2.3.0-rc1
%
% Basic and many-vector interfaces
% finufft1d1 - 1D complex nonuniform FFT of type 1 (nonuniform to uniform).
Expand Down
2 changes: 1 addition & 1 deletion python/cufinufft/cufinufft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"nufft3d1", "nufft3d2",
"Plan"]

__version__ = '2.2.0'
__version__ = '2.3.0-rc1'
2 changes: 1 addition & 1 deletion python/finufft/finufft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
from finufft._interfaces import nufft2d1,nufft2d2,nufft2d3
from finufft._interfaces import nufft3d1,nufft3d2,nufft3d3

__version__ = '2.2.0'
__version__ = '2.3.0-rc1'

0 comments on commit e0873ab

Please sign in to comment.