diff --git a/HISTORY.md b/HISTORY.md index 5f789aac44..ce240300de 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,9 +1,9 @@ # History -# not yet published, version 7.5.0 +# 2020-10-07, version 7.5.0 -- Fixed #1974: function `pickRandom` now allows randomly picking elements - from matrices with 2 or more dimensions instead of only from a vector. +- Function `pickRandom` now allows randomly picking elements from matrices + with 2 or more dimensions instead of only from a vector, see #1974. Thanks @KonradLinkowski. diff --git a/package-lock.json b/package-lock.json index 368479018a..09c8ca0d01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.4.0", + "version": "7.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 953b745f40..b35f2c7870 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.4.0", + "version": "7.5.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 3dece8ea4f..75e75805b7 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '7.4.0' +export const version = '7.5.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.