From 76f6085c7776957102293e991a853631a66a4e94 Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Sat, 26 Sep 2020 17:53:58 +0200 Subject: [PATCH] Publish v7.3.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 d5f356e66c..21dffe5715 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet published, version 7.3.0 +# 2020-09-26, version 7.3.0 - Implemented functions `usolveAll` and `lsolveAll`, see #1916. Thanks @m93a. - Implemented support for units in functions `std` and `variance`, see #1950. diff --git a/package-lock.json b/package-lock.json index fcccf3c438..9931a7ba1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.2.0", + "version": "7.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 202d07ff5d..182c908953 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.2.0", + "version": "7.3.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 69318b2446..a14eca5f74 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '7.2.0' +export const version = '7.3.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.