mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2025-06-06 09:24:21 +00:00
v10.5.0
This commit is contained in:
parent
9817dd122c
commit
928b4cf0ee
12
.travis.yml
12
.travis.yml
@ -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"
|
|
||||||
|
@ -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.
|
||||||
|
@ -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
|
||||||
|
@ -4,7 +4,6 @@ An arbitrary-precision Decimal type for JavaScript.
|
|||||||
|
|
||||||
[](https://www.npmjs.com/package/decimal.js)
|
[](https://www.npmjs.com/package/decimal.js)
|
||||||
[](https://www.npmjs.com/package/decimal.js)
|
[](https://www.npmjs.com/package/decimal.js)
|
||||||
[](https://travis-ci.org/MikeMcl/decimal.js)
|
|
||||||
[](https://cdnjs.com/libraries/decimal.js)
|
[](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)
|
||||||
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user