Skip to content

Commit 0f1f54e

Browse files
committed
Bump version: 1.2 → 1.3
1 parent c21b37c commit 0f1f54e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2
2+
current_version = 1.3
33
parse = (?P<major>\d+)\.(?P<minor>\d+)
44
serialize =
55
{major}.{minor}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cuFINUFFT v1.2
1+
# cuFINUFFT v1.3
22

33
<img align="right" src="docs/logo.png" width="350">
44

ci/distribution_helper.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Helper Script For Building Wheels
44

5-
cufinufft_version=1.2
5+
cufinufft_version=1.3
66
manylinux_version=manylinux2014
77
cuda_version=11.0
88
dockerhub=garrettwrong

python/cufinufft/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cuFINUFFT v1.2 Python package
1+
# cuFINUFFT v1.3 Python package
22

33
The cuFINUFFT library is an efficient GPU implementation of the 1-, 2- and
44
3-dimensional nonuniform fast Fourier transform (NUFFT). It includes both type
@@ -10,7 +10,7 @@ cuFINUFFT library, which is written in C++ and CUDA.
1010
For a mathematical description of the NUFFT and applications to signal
1111
processing, imaging, and scientific computing, see [the FINUFFT
1212
documentation](https://finufft.readthedocs.io). Usage examples can be found
13-
[here](https://github.com/flatironinstitute/cufinufft/tree/v1.2/examples).
13+
[here](https://github.com/flatironinstitute/cufinufft/tree/v1.3/examples).
1414

1515
If you use this package, please cite our paper:
1616

python/cufinufft/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from cufinufft.cufinufft import cufinufft
22

33
__all__ = ['cufinufft']
4-
__version__ = '1.2'
4+
__version__ = '1.3'

python/cufinufft/docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = 'Melody Shih, Joakim Anden, Garrett Wright'
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = '1.2'
26+
release = '1.3'
2727

2828

2929
# -- General configuration ---------------------------------------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# Python Package Setup
3030
setup(
3131
name='cufinufft',
32-
version='1.2',
32+
version='1.3',
3333
author='Yu-shuan Melody Shih, Garrett Wright, Joakim Anden, Johannes Blaschke, Alex Barnett',
3434
author_email='[email protected]',
3535
url='https://github.com/flatironinstitute/cufinufft',

0 commit comments

Comments
 (0)