diff --git a/HISTORY.md b/HISTORY.md index ef5ccb8aa1..e328ca96fe 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet published, version 7.5.1 +# 2020-10-10, version 7.5.1 - Fix object pollution vulnerability in `math.config`. Thanks Snyk. diff --git a/package-lock.json b/package-lock.json index 09c8ca0d01..014d116340 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.5.0", + "version": "7.5.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b35f2c7870..90049d74c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "7.5.0", + "version": "7.5.1", "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 75e75805b7..48177098fe 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '7.5.0' +export const version = '7.5.1' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.