All Versions
243
Latest Version
Avg Release Cycle
27 days
Latest Release
518 days ago

Changelog History
Page 7

  • v6.6.4 Changes

    April 15, 2020
    • 🛠 Fix published files containing Windows line endings (CRLF instead of LF).
  • v6.6.3 Changes

    April 10, 2020
    • 🛠 Fix #1813: bug in engineering notation for numbers of function format, sometimes resulting in needless trailing zeros.
    • 🛠 Fix #1808: methods .toNumber() and .toNumeric() not working on a unitless unit.
    • 🛠 Fix #1645: not being able to use named operators mod, and, not, or, xor, to, in as object keys. Thanks @Veeloxfire.
    • 🛠 Fix eigs not using config.epsilon.
  • v6.6.2 Changes

    March 29, 2020
    • 🛠 Fix #1789: Function eigs not calculating with BigNumber precision when input contains BigNumbers.
    • 🏗 Run the build script during npm prepare, so you can use the library directly when installing directly from git. See #1751. Thanks @cinderblock.
  • v6.6.1 Changes

    February 26, 2020
    • 🛠 Fix #1725: simplify a/(b/c). Thanks @dbramwell.
    • 🛠 Fix examples in documentation of row and column.
  • v6.6.0 Changes

    February 01, 2020
    • 👀 Implemented function eigs, see #1705, #542 #1175. Thanks @arkajitmandal.
    • 🛠 Fixed #1727: validate matrix size when creating a DenseMatrix using fromJSON.
    • 🛠 Fixed DenseMatrix.map copying the size and datatype from the original matrix instead of checking the returned dimensions and type of the callback.
    • ➕ Add a caret to dependencies (like) ^1.2.3) to allow downstream updates without having to await a new release of mathjs.
  • v6.5.0 Changes

    January 08, 2020
    • 👀 Implemented baseName option for createUnit, see #1707. Thanks @ericman314.
  • v6.4.0 Changes

    January 06, 2020
    • 👍 Extended function dimension with support for n-dimensional points. Thanks @Veeloxfire.
  • v6.3.0 Changes

    December 31, 2019
    • 👌 Improved performance of factorial for BigNumber up to a factor two, see #1687. Thanks @kmdrGroch.
  • v6.2.5 Changes

    November 20, 2019
    • 🛠 Fixed IndexNode using a hardcoded, one-based implementation of index, making it impossible to instantiate a zero-based version of the expression parser. See #782.
  • v6.2.4 Changes

    November 20, 2019
    • 🛠 Fixed #1669: function 'qr' threw an error if the pivot was zero, thanks @kevinkelleher12 and @harrysarson.
    • 🚚 Resolves #942: remove misleading assert in 'qr'. Thanks @harrysarson.
    • ↪ Work around a bug in complex.js where sign(0) returns complex NaN. Thanks @harrysarson.