From 7b7a4a1cd09db69ee72e71ba5ed64a03b1b80d4e Mon Sep 17 00:00:00 2001 From: nikohansen Date: Mon, 21 Jun 2021 00:13:09 +0200 Subject: [PATCH] v3.1.0 --- README.md | 5 +++++ cma/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a950c1..eaa67e1 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,11 @@ either of these with ``sudo``. ## Version History +* [Release ``3.1.0``](https://github.com/CMA-ES/pycma/releases/tag/r3.1.0) + fixes the return value of `fmin_con`, improves its usability and provides + a `best_feasible` attribute in `CMAEvolutionStrategy`, in addition to + various other more minor code fixes and improvements. + * [Release ``3.0.3``](https://github.com/CMA-ES/pycma/releases/tag/r3.0.3) provides parallelization with ``OOOptimizer.optimize(..., n_jobs=...)`` (fix for ``3.0.1/2``) and improved `pickle` support. * [Release ``3.0.0``](https://github.com/CMA-ES/pycma/releases/tag/r3.0.0) provides non-linear constraints handling, improved plotting and termination options and better resilience to injecting bad solutions, and further various fixes. diff --git a/cma/__init__.py b/cma/__init__.py index 8de5b8d..46bba1a 100644 --- a/cma/__init__.py +++ b/cma/__init__.py @@ -148,7 +148,7 @@ # fcts = ff # historical reasons only, replace cma.fcts with cma.ff first -__version__ = "3.0.4 $Revision: 4432 $ $Date: 2020-05-28 20:39:09 +0200 (Thu, 28 May 2020) $" +__version__ = "3.1.0" # $Source$ # according to PEP 8 style guides, but what is it good for? # $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $ # bash $: svn propset svn:keywords 'Date Revision Id' __init__.py