From 5011ed1f04f0441c052d38ac3c796bf740e6522e Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 27 Jan 2021 11:21:06 +0100 Subject: [PATCH] Publish v9.1.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 9d2cac387..b63e82a7a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet published, version 9.1.0 +# 2021-01-27, version 9.1.0 - Extended function `reshape` with support for a wildcard `-1` to automatically calculate the remaining size, like `reshape([1, 2, 3, 4, 5, 6], [-1, 2])` diff --git a/package-lock.json b/package-lock.json index 86b82b15c..f1cfc312b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "9.0.0", + "version": "9.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 27ccb1e21..f8e035e09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "9.0.0", + "version": "9.1.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)", "homepage": "https://mathjs.org", diff --git a/src/version.js b/src/version.js index b05005e50..d800c7e38 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '9.0.0' +export const version = '9.1.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.