diff --git a/CHANGELOG.md b/CHANGELOG.md index 182a7b95e..ced5516b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed -## [2.1.3] - 2023-09-22 +## [2.1.3] - 2023-10-04 ### Added - Warning is emitted if bootstrap expansion factor is too large ( @segasai ) - Warning is emitted if maxcall/maxiter stop the iterations too early ( @segasai ) diff --git a/docs/source/index.rst b/docs/source/index.rst index b5303c5f5..15995033e 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -98,6 +98,18 @@ Changelog .. image:: ../images/logo.gif :align: center +2.1.3 (2023-10-04) +------------------ +Bug fix release + +- Warning is emitted if bootstrap expansion factor is too large ( @segasai ) +- Warning is emitted if maxcall/maxiter stop the iterations too early ( @segasai ) +- The clustering/K-means for ellipsoid decomposition is now done in scaled space of points divided by stddev along each dimension ( @segasai) +- Update the initialisation of points in the case where some fraction of prior volume has log(L)=-inf this should increase the accuracy of log(Z) estimates in some cases +- Fix a rare possible bug where due to numerical instability in uniform sampling a q==0 error could have occured ( @segasai) +- Fix a FileExistsError when using check-points on Windows ( #450, reported by @rodleiva, fixed by @segasai ) + + 2.1.2 (2023-06-01) ------------------- Bug fix release diff --git a/py/dynesty/_version.py b/py/dynesty/_version.py index 4eabd0b3f..e835b9d02 100644 --- a/py/dynesty/_version.py +++ b/py/dynesty/_version.py @@ -1 +1 @@ -__version__ = "2.1.2" +__version__ = "2.1.3"