diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aed5dc88..c9e098bc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -128,3 +128,9 @@ 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) + +Changes from version 4.2.7 to 4.2.8 +=================================== + +- Fixed a bug in the calculation of jackknife and sample variance when only the second + catalog in a cross-correlation uses patches. diff --git a/treecorr/_version.py b/treecorr/_version.py index e7359221..accf0783 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.7' +__version__ = '4.2.8' __version_info__ = tuple(map(int, __version__.split('.')))