From e6bda5fac9cb5ef4c2ce1250be43723f4aba10e2 Mon Sep 17 00:00:00 2001 From: Tias Guns Date: Sat, 29 Jan 2022 17:31:20 +0100 Subject: [PATCH] release 0.9.7 --- changelog.md | 7 +++++++ cpmpy/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 9e08fad3b..fc758a8d8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Change log +## 0.9.7 +* New: s.solveAll(): convenient (efficient) solution enumeration +* New: added sum() to python\_builtins, behaves like np.sum +* Behind the scenes: add 'wsum' weighted sum operator +* bugfix for sum: always create new expression, do not modify inplace +* bugfix: allow model with only an objective + ## 0.9.6 * Added tutorial video and used notebooks https://www.youtube.com/watch?v=A4mmmDAdusQ diff --git a/cpmpy/__init__.py b/cpmpy/__init__.py index b8a53b1ec..f62d140fd 100644 --- a/cpmpy/__init__.py +++ b/cpmpy/__init__.py @@ -14,7 +14,7 @@ """ # Tias Guns, 2019-2021 -__version__ = "0.9.6" +__version__ = "0.9.7" from .expressions import *