Skip to content

Commit f74d636

Browse files
committed
Merge branch 'develop' into v15
# Conflicts: # HISTORY.md
2 parents f894645 + 0e33e70 commit f74d636

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
- Feat: #2344 matrix subset according to the type of input (#3485).
1818
Thanks @dvd101x.
1919

20+
# 2025-09-26, 14.8.1
21+
22+
- Fix: #3538 `config` printing a warning when using `{ number: 'bigint' }`
23+
(#3540).
24+
2025
# 2025-09-24, 14.8.0
2126

2227
- Feat: #3353 support for the nullish coalescing operator `??` in the

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mathjs",
3-
"version": "14.8.0",
3+
"version": "14.8.1",
44
"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.",
55
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
66
"homepage": "https://mathjs.org",

src/core/function/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { clone, deepExtend } from '../../utils/object.js'
22
import { DEFAULT_CONFIG } from '../config.js'
33

44
export const MATRIX_OPTIONS = ['Matrix', 'Array'] // valid values for option matrix
5-
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'Fraction'] // valid values for option number
5+
export const NUMBER_OPTIONS = ['number', 'BigNumber', 'bigint', 'Fraction'] // valid values for option number
66

77
export function configFactory (config, emit) {
88
/**

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const version = '14.8.0'
1+
export const version = '14.8.1'
22
// Note: This file is automatically generated when building math.js.
33
// Changes made in this file will be overwritten.

0 commit comments

Comments
 (0)