From cee9deb3772900b7ed03b9987f2a338cc595912d Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Thu, 8 Feb 2024 10:07:33 +0100 Subject: [PATCH] chore: publish v12.3.2 --- HISTORY.md | 8 ++++++++ package.json | 2 +- src/version.js | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 3b3f1ee9cb..0edf5ca753 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,14 @@ # History +# 2024-02-08, 12.3.2 + +- Improved the performance of custom defined functions in the expression + parser (#3150). +- Fix: #3143 cannot use `and` and `or` inside a function definition. + Regression since `v12.1.0` (#3150). + + # 2024-02-01, 12.3.1 - Improved the typings of the arguments of `ArrayNode`, `FunctionNode`, diff --git a/package.json b/package.json index a305f4b3e6..e48fdb7405 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "12.3.1", + "version": "12.3.2", "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 896267698a..c586d9b811 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '12.3.1' +export const version = '12.3.2' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.