From f9ab3a107393f7ed356dfcb662f5bfa6df1407fe Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Thu, 26 Oct 2023 12:23:38 +0200 Subject: [PATCH] chore: update history (forgot to mention a feature in v12) --- HISTORY.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 1c0c0a7677..73818eb389 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,7 +5,8 @@ Breaking changes: -- Fix #2879, #2927, #3014: change the confusing interface of `eigs`. +- Fix #2879, #2927, #3014: change the confusing interface of `eigs` (#3037), + thanks @gwhitney. Before, functions `eigs` returned an object: ``` { values: MathCollection; vectors: MathCollection } @@ -28,10 +29,15 @@ Breaking changes: - Type `MathJsStatic` is renamed to `MathJsInstance`. - Type `FactoryDependencies` is deprecated, use `MathJsFactory` instead, and import dependency maps directly from the library. -- Change the assignment operator of .toTex output from `:=` to `=` (see #2980, - #3032). +- Change the assignment operator of `.toTex()` output from `:=` to `=` (see + #2980, #2987). - Drop official support for Node.js 14 and 16. +Features: + +- Function `eigs` now has an option to turn off calculation of eigenvectors + (#3057, #2180). Thanks @gwhitney. + Fixes: - Find eigenvectors of defective matrices (#3037). Thanks @gwhitney.