Skip to content

Commit

Permalink
New minor release [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
manodeep committed Oct 3, 2023
1 parent 2b00045 commit 1c41e82
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
17 changes: 13 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,19 @@ New features
- conda installable package
- GPU version

2.5.2 (upcoming)
================
- Fix python_requires in setup.py [#302]
- Faster `FALLBACK` kernels [#303]
2.5.2 (04/10/2023)
==================

Enhancements
------------
- Simplified and faster ``FALLBACK`` kernels [#303]

Infrastructure
--------------
- Fix ``python_requires`` in setup.py [#302]
- Automatic uploads of new releases to PyPI [#305]
- Added @dependabot for automatic dependency updates in GitHub Actions [#306, #307, #308]


2.5.1 (28/07/2023)
==================
Expand Down
2 changes: 1 addition & 1 deletion Corrfunc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import sys
import warnings

__version__ = "2.5.1"
__version__ = "2.5.2"
__author__ = "Manodeep Sinha <manodeep@gmail.com>"


Expand Down
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ OPT += -DUSE_OMP
DISTNAME:=Corrfunc
MAJOR:=2
MINOR:=5
PATCHLEVEL:=1
PATCHLEVEL:=2
VERSION:=$(MAJOR).$(MINOR).$(PATCHLEVEL)
ABI_COMPAT_VERSION:=$(MAJOR).0
# Whenever conda needs to be checked again
Expand Down
2 changes: 1 addition & 1 deletion utils/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
extern "C" {
#endif

#define API_VERSION STR("2.5.1")
#define API_VERSION STR("2.5.2")

/* Macros as mask for the binning_flags */
/* These consititute the 32 bytes for
Expand Down

0 comments on commit 1c41e82

Please sign in to comment.