From 058fd6c28e92bac2fde939fa75a03aca59a2894d Mon Sep 17 00:00:00 2001 From: Mike Jarvis Date: Fri, 25 Mar 2022 13:59:44 -0400 Subject: [PATCH] Prep for 4.2.7 --- CHANGELOG.rst | 7 +++++++ treecorr/_version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d95715b8..aed5dc88 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -121,3 +121,10 @@ Changes from version 4.2.5 to 4.2.6 - Fixed a numerical bug that could suppress the signal in GG correlations in spherical coordinates if there are multiple objects at the same position. Thanks to Sandra Unruh for the bug report. (#134) + +Changes from version 4.2.6 to 4.2.7 +=================================== + +- Fixed a memory problem when computing patch-based covariance matrix when npatches + is moderately large (e.g. 500). Thanks to Joe Zuntz and Judit Prat for finding and + reporting the bug. (#137) diff --git a/treecorr/_version.py b/treecorr/_version.py index efb15636..e7359221 100644 --- a/treecorr/_version.py +++ b/treecorr/_version.py @@ -11,5 +11,5 @@ # this list of conditions, and the disclaimer given in the documentation # and/or other materials provided with the distribution. -__version__ = '4.2.6' +__version__ = '4.2.7' __version_info__ = tuple(map(int, __version__.split('.')))