1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2025-06-06 09:24:21 +00:00
This commit is contained in:
Michael Mclaughlin 2025-01-23 20:51:53 +00:00
parent 9817dd122c
commit 928b4cf0ee
7 changed files with 21 additions and 13 deletions

View File

@ -1,6 +1,11 @@
language: node_js language: node_js
node_js: node_js:
- "node" - "node"
- "23"
- "22"
- "21"
- "20"
- "19"
- "18" - "18"
- "17" - "17"
- "16" - "16"
@ -16,8 +21,5 @@ node_js:
- "6" - "6"
- "5" - "5"
- "4" - "4"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "iojs"

View File

@ -1,3 +1,10 @@
#### 10.5.0
* 23/01/2025
* #216 TypeScript: instantiation without `new` keyword
* #181 Support `BigInt`
* #241 Match `Math.max` and `Math.min` negative zero handling
* #217 Compute `acos` with less cancellation near `x = 1`
#### 10.4.3 #### 10.4.3
* 04/12/2022 * 04/12/2022
* #211 Remove `toStringTag` declaration for type compatibility. * #211 Remove `toStringTag` declaration for type compatibility.

View File

@ -1,6 +1,6 @@
The MIT Licence. The MIT Licence.
Copyright (c) 2022 Michael Mclaughlin Copyright (c) 2025 Michael Mclaughlin
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View File

@ -4,7 +4,6 @@ An arbitrary-precision Decimal type for JavaScript.
[![npm version](https://img.shields.io/npm/v/decimal.js.svg)](https://www.npmjs.com/package/decimal.js) [![npm version](https://img.shields.io/npm/v/decimal.js.svg)](https://www.npmjs.com/package/decimal.js)
[![npm downloads](https://img.shields.io/npm/dw/decimal.js)](https://www.npmjs.com/package/decimal.js) [![npm downloads](https://img.shields.io/npm/dw/decimal.js)](https://www.npmjs.com/package/decimal.js)
[![Build Status](https://travis-ci.org/MikeMcl/decimal.js.svg)](https://travis-ci.org/MikeMcl/decimal.js)
[![CDNJS](https://img.shields.io/cdnjs/v/decimal.js.svg)](https://cdnjs.com/libraries/decimal.js) [![CDNJS](https://img.shields.io/cdnjs/v/decimal.js.svg)](https://cdnjs.com/libraries/decimal.js)
<br> <br>
@ -243,4 +242,4 @@ import Decimal from './decimal.min.mjs';
## Licence ## Licence
[The MIT Licence (Expat).](LICENCE.md) [The MIT Licence](LICENCE.md)

View File

@ -3,10 +3,10 @@
/*! /*!
* decimal.js v10.4.3 * decimal.js v10.5.0
* An arbitrary-precision Decimal type for JavaScript. * An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js * https://github.com/MikeMcl/decimal.js
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licence * MIT Licence
*/ */

View File

@ -1,8 +1,8 @@
/*! /*!
* decimal.js v10.4.3 * decimal.js v10.5.0
* An arbitrary-precision Decimal type for JavaScript. * An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js * https://github.com/MikeMcl/decimal.js
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licence * MIT Licence
*/ */

View File

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.", "description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "10.4.3", "version": "10.5.0",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",