Skip to content

Commit 1c41e82

Browse files
committed
New minor release [ci skip]
1 parent 2b00045 commit 1c41e82

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGES.rst

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,19 @@ New features
1010
- conda installable package
1111
- GPU version
1212

13-
2.5.2 (upcoming)
14-
================
15-
- Fix python_requires in setup.py [#302]
16-
- Faster `FALLBACK` kernels [#303]
13+
2.5.2 (04/10/2023)
14+
==================
15+
16+
Enhancements
17+
------------
18+
- Simplified and faster ``FALLBACK`` kernels [#303]
19+
20+
Infrastructure
21+
--------------
22+
- Fix ``python_requires`` in setup.py [#302]
23+
- Automatic uploads of new releases to PyPI [#305]
24+
- Added @dependabot for automatic dependency updates in GitHub Actions [#306, #307, #308]
25+
1726

1827
2.5.1 (28/07/2023)
1928
==================

Corrfunc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import sys
1313
import warnings
1414

15-
__version__ = "2.5.1"
15+
__version__ = "2.5.2"
1616
__author__ = "Manodeep Sinha <manodeep@gmail.com>"
1717

1818

common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ OPT += -DUSE_OMP
3434
DISTNAME:=Corrfunc
3535
MAJOR:=2
3636
MINOR:=5
37-
PATCHLEVEL:=1
37+
PATCHLEVEL:=2
3838
VERSION:=$(MAJOR).$(MINOR).$(PATCHLEVEL)
3939
ABI_COMPAT_VERSION:=$(MAJOR).0
4040
# Whenever conda needs to be checked again

utils/defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
extern "C" {
2222
#endif
2323

24-
#define API_VERSION STR("2.5.1")
24+
#define API_VERSION STR("2.5.2")
2525

2626
/* Macros as mask for the binning_flags */
2727
/* These consititute the 32 bytes for

0 commit comments

Comments
 (0)