From c095321f7ea16fff58098af4bd8150c5598011ca Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 11 Dec 2024 18:05:00 +0100 Subject: [PATCH] chore: publish `v14.0.1` --- AUTHORS | 3 ++- HISTORY.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/version.js | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/AUTHORS b/AUTHORS index 13f40f4cdd..27723ad8e0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -257,6 +257,7 @@ gauravchawhan <117282267+gauravchawhan@users.noreply.github.com> Akki <63336443+Aakash-Rana@users.noreply.github.com> Neeraj Kumawat <42885320+nkumawat34@users.noreply.github.com> Emmanuel Ferdman -Paul K +Paul Korzhyk +Francois <819179+fchu@users.noreply.github.com> # Generated by tools/update-authors.js diff --git a/HISTORY.md b/HISTORY.md index 57c5a6ec56..63f686758d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# unpublished changes +# 2024-12-11, 14.0.1 - Fix: make derivative much faster (#3322). Thanks @paulftw. - Fix: #3317 export `Fraction` type from the `fraction.js` library instead of diff --git a/package-lock.json b/package-lock.json index c23cbd5fab..c3f412263f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mathjs", - "version": "14.0.0", + "version": "14.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mathjs", - "version": "14.0.0", + "version": "14.0.1", "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.25.7", diff --git a/package.json b/package.json index c575e62fe5..49006cb8cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "14.0.0", + "version": "14.0.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 a70e0cec6e..a0a88b4f0c 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '14.0.0' +export const version = '14.0.1' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.