From a54db5a9e7f79e5ee24f16a93de5e8b5955b406b Mon Sep 17 00:00:00 2001 From: PaulJonasJost Date: Thu, 18 Dec 2025 14:45:51 +0100 Subject: [PATCH 1/2] Prepare update --- CHANGELOG.rst | 23 ++++++++++++++++++++++- pypesto/version.py | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2034158d2..20521d859 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,10 +6,31 @@ Release notes .......... +0.5.8 (2025-12-18) +------------------ + +- Optimization + - Unified interface for x0 parameter (#1654) + - Unified interface for maxiter and maxeval parameters (#1648) + - Unified interface for time limits across optimizers (#1638) + - Make DlibOptimizer solver_epsilon configurable (#1637) + - Default verbosity for CMA optimizer (#1656) + - Fix startpoint selection and neval in scatter search (#1644) +- Visualize + - Fix waterfall axis bug (#1640) +- Ensemble + - Fix dataset umap pca cov (#1628) +- Store + - Updated HDF5 loading (#1636) +- Sampling + - Add prior sampling support (#1622) +- Documentation + - Reintroduce pymc to documentation (#1643) + + 0.5.7 (2025-11-13) ------------------- - - General - Require Python >=3.11 (#1585) - Documentation diff --git a/pypesto/version.py b/pypesto/version.py index 1cc82e6b8..fc0a8435a 100644 --- a/pypesto/version.py +++ b/pypesto/version.py @@ -1 +1 @@ -__version__ = "0.5.7" +__version__ = "0.5.8" From 572eaee6a4eea65c1585a3c1251df616a85554e8 Mon Sep 17 00:00:00 2001 From: PaulJonasJost Date: Thu, 18 Dec 2025 15:31:18 +0100 Subject: [PATCH 2/2] updated some naming --- CHANGELOG.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 20521d859..fcab06a68 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,16 +14,16 @@ Release notes - Unified interface for maxiter and maxeval parameters (#1648) - Unified interface for time limits across optimizers (#1638) - Make DlibOptimizer solver_epsilon configurable (#1637) - - Default verbosity for CMA optimizer (#1656) + - Verbosity for CMA optimizer, producing no more outputfiles per default (#1656) - Fix startpoint selection and neval in scatter search (#1644) - Visualize - Fix waterfall axis bug (#1640) - Ensemble - - Fix dataset umap pca cov (#1628) + - Fix Plotting uf UMAP and PCA (#1628) - Store - Updated HDF5 loading (#1636) - Sampling - - Add prior sampling support (#1622) + - Add support for sampling parameter values from prior distributions (#1622) - Documentation - Reintroduce pymc to documentation (#1643)