From 6a6daa67040ec1745f7b51d7277a441614d61490 Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 3 Feb 2021 17:32:55 +0100 Subject: [PATCH] Publish `v9.2.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 3152703b76..4476ac5f6b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet published, version 9.2.0 +# 2020-02-03, version 9.2.0 - Implemented function `count` to count the total elements in a matrix, see #2085. Thanks @Josef37. diff --git a/package-lock.json b/package-lock.json index f1cfc312b2..2909c6aa98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "9.1.0", + "version": "9.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f8e035e09b..c638573e20 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "9.1.0", + "version": "9.2.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 d800c7e383..dbd2a7e96f 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '9.1.0' +export const version = '9.2.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.