diff --git a/HISTORY.md b/HISTORY.md index c60f071ce..be3f8ea53 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet released, version 5.7.0 +# 2019-03-10, version 5.7.0 - Implemented support for `pow()` in `derivative`. Thanks @sam-19. - Gracefully handle round-off errors in fix, ceil, floor, and range diff --git a/package-lock.json b/package-lock.json index d23171292..4611c0c32 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "5.6.0", + "version": "5.7.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 25d0d6ba5..dc19f5474 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "5.6.0", + "version": "5.7.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)", "contributors": [ diff --git a/src/version.js b/src/version.js index 6f59f7f30..13b89535a 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -module.exports = '5.6.0' +module.exports = '5.7.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.