From 8bb196a0bbceeb17ef2aac6773682cb6be159a69 Mon Sep 17 00:00:00 2001 From: lkstrp Date: Thu, 6 Feb 2025 09:46:07 +0100 Subject: [PATCH] prepare release `v0.5.0` --- doc/release_notes.rst | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/doc/release_notes.rst b/doc/release_notes.rst index aff821a0..379c07de 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -1,12 +1,26 @@ Release Notes ============= -Upcoming Version ----------------- +.. Upcoming Version +.. ---------------- -* The internal handling of `Solution` objects was improved for more consistency. Solution objects created from solver calls now preserve the exact index names from the input file. -* Multiplication of a linear expression by a constant value may now introduce new dimensions. -* Added method `unstack` to `LinearExpression`, `Variable` and `Constraint` to unstack a dimension. +Version 0.5.0 +-------------- + +**Features** + +* Multiplication of a linear expression by a constant value may now introduce new + dimensions. +* Added method `unstack` to `LinearExpression`, `Variable` and `Constraint` to unstack + a dimension. +* Added extra argument in io methods `explicit_coordinate_names` to allow for export of + variables and constraints with explicit coordinate names. + +**Bug fixes** + +* The internal handling of `Solution` objects was improved for more consistency. + Solution objects created from solver calls now preserve the exact index names from + the input file. Version 0.4.4 -------------- @@ -15,9 +29,6 @@ Version 0.4.4 * Solution files that following a different naming scheme of variables and constraints using more than on initial letter in the prefix (e.g. `col123`, `row456`) are now supported. * GLPK solver is always called with the `--freemps` option instead of the `--mps` when using the Solver API to solve an external MPS file. `--mps` is for the older fixed-column MPS format that is rarely used nowadays. Almost all fixed MPS files can be parsed by the free MPS format. -* Added extra argument in io methods `explicit_coordinate_names` to allow for export of - variables and constraints with explicit coordinate names. - Version 0.4.3 -------------- @@ -46,7 +57,6 @@ Version 0.4.0 * The representation of linopy objects with multiindexed coordinates was improved to be more readable. * Grouping expressions is now supported on dimensions called "group" and dimensions that have the same name as the grouping object. * Grouping dimensions which have multiindexed coordinates is now supported. -* See full list of changes `here `__. Version 0.3.15 --------------