From 7cbd0d3e97e14433ef42a28691362792e0181a96 Mon Sep 17 00:00:00 2001 From: jos Date: Sat, 1 Feb 2020 17:51:52 +0100 Subject: [PATCH] Publish v6.6.0 --- HISTORY.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/version.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b37755a096..8de30b6cd8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,7 +1,7 @@ # History -# not yet published, version 6.6.0 +# 2020-02-01, version 6.6.0 - Implemented function `eigs`, see #1705, #542 #1175. Thanks @arkajitmandal. - Fixed #1727: validate matrix size when creating a `DenseMatrix` using diff --git a/package-lock.json b/package-lock.json index 5eeff72c26..6738026ef2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "6.5.0", + "version": "6.6.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 74802a9e1d..431cf98b95 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "6.5.0", + "version": "6.6.0", "description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types like numbers, big numbers, complex numbers, fractions, units, and matrices.", "author": "Jos de Jong (https://github.com/josdejong)", "contributors": [ diff --git a/src/version.js b/src/version.js index 275696ffdb..502a0b4344 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '6.5.0' +export const version = '6.6.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.