From 1100688cbbe81fb9a46fad96047244647be71ab0 Mon Sep 17 00:00:00 2001 From: Eric Hanson <5846501+ericphanson@users.noreply.github.com> Date: Sun, 19 May 2024 23:27:51 +0200 Subject: [PATCH 1/3] Update news for release --- docs/src/changelog.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index becdb3a59..47ca3fefe 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -18,7 +18,7 @@ changes. with MathOptInterface. (#504), (#551), (#584), (#588), (#637) * `x + A` will error if `x` is a scalar variable and `A` is an array. Instead, use `x * ones(size(A)) + A`. - * The `RelativeEntropyAtom` now returns a scalar value instead o + * The `RelativeEntropyAtom` now returns a scalar value instead of elementwise values. This does not affect the result of `relative_entropy`. * The function `constant` should be used instead of the type `Constant` (which now refers to exclusively real constants). @@ -28,10 +28,10 @@ changes. (Following the convention in MathOptInterface, the dual of `a <= b` is always negative, regardless of optimization sense.) (#593) * The structs `LtConstraint`, `GtConstraint`, `EqConstraint` - `SOCConstraint`, `ExpConstraint`, `GeoMeanEpiConeConstraint`, - `GeoMeanHypoConeConstraint`, and `SDPConstraint` have been replaced by + `SOCConstraint`, `ExpConstraint`, `SDPConstraint`, `GeoMeanEpiConeConstraint`, + `GeoMeanHypoConeConstraint`, and `RelativeEntropyEpiCone`, have been replaced by `Constraint{S}` where `S<:MOI.AbstractSet` (#590), (#597), (#598), - (#599), (#601), (#602), (#604), (#623), (#632), (#648) + (#599), (#601), (#602), (#604), (#623), (#632), (#648), (#663), (#665) * The set `GeomMeanEpiCone` has been renamed to `GeometricMeanEpiConeSquare` and `GeomMeanHypoCone` has been renamed to `GeometricMeanHypoConeSquare` (#638) @@ -63,6 +63,8 @@ changes. between solves (#586) * The `Context` struct has been refactored and various fields have been changed. The internal details are now considered private. (#645) + * The keyword argument `silent_solver` has been deprecated to `silent`. (#670) + * Concatenating lists of constraints using `+` (and `+=`) has been deprecated. (#659) ### Added @@ -82,6 +84,9 @@ changes. the DCP expression graph to MathOptInterface (#633) * Added support for using `Problem` as an atom (#646) * `show(::IO, ::Problem)` now includes some problem statistics (#650) + * `show(::IO, ::Problem)` now prints less of the expression tree by default (#661) + * A [new example](#Continuity-of-the-quantum-conditional-entropy) for quantum conditional entropy has been added. (#671) + * `solve!` now returns the problem itself (#658) ### Fixed @@ -101,7 +106,7 @@ changes. ### Other * Improved the documentation (#506), (#517), (#529), (#571), (#573), (#574), - (#576), (#579), (#587), (#594), (#628), (#652), (#656) + (#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666) * Refactored the tests into a functional form (#532) * Updated `Project.toml` (#535) * Added `test/Project.toml` (#536) From 24b3f46ce339d9acd9d067654027cc4c1aa7b43d Mon Sep 17 00:00:00 2001 From: Eric Hanson <5846501+ericphanson@users.noreply.github.com> Date: Sun, 19 May 2024 23:45:21 +0200 Subject: [PATCH 2/3] Update docs/src/changelog.md --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 47ca3fefe..edb05df85 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -106,7 +106,7 @@ changes. ### Other * Improved the documentation (#506), (#517), (#529), (#571), (#573), (#574), - (#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666) + (#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666), (#674) * Refactored the tests into a functional form (#532) * Updated `Project.toml` (#535) * Added `test/Project.toml` (#536) From 4fd79a2809bb110a427c6160d654b8712c37c787 Mon Sep 17 00:00:00 2001 From: Eric Hanson <5846501+ericphanson@users.noreply.github.com> Date: Mon, 20 May 2024 00:25:42 +0200 Subject: [PATCH 3/3] try to fix link --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index edb05df85..37cff3bd8 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -85,7 +85,7 @@ changes. * Added support for using `Problem` as an atom (#646) * `show(::IO, ::Problem)` now includes some problem statistics (#650) * `show(::IO, ::Problem)` now prints less of the expression tree by default (#661) - * A [new example](#Continuity-of-the-quantum-conditional-entropy) for quantum conditional entropy has been added. (#671) + * A [new example](@ref "Continuity of the quantum conditional entropy") for quantum conditional entropy has been added. (#671) * `solve!` now returns the problem itself (#658) ### Fixed