mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2025-06-02 23:44:16 +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
|
||||
node_js:
|
||||
- "node"
|
||||
- "23"
|
||||
- "22"
|
||||
- "21"
|
||||
- "20"
|
||||
- "19"
|
||||
- "18"
|
||||
- "17"
|
||||
- "16"
|
||||
@ -16,8 +21,5 @@ node_js:
|
||||
- "6"
|
||||
- "5"
|
||||
- "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
|
||||
* 04/12/2022
|
||||
* #211 Remove `toStringTag` declaration for type compatibility.
|
||||
|
@ -1,6 +1,6 @@
|
||||
The MIT Licence.
|
||||
|
||||
Copyright (c) 2022 Michael Mclaughlin
|
||||
Copyright (c) 2025 Michael Mclaughlin
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
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://travis-ci.org/MikeMcl/decimal.js)
|
||||
[](https://cdnjs.com/libraries/decimal.js)
|
||||
|
||||
<br>
|
||||
@ -243,4 +242,4 @@ import Decimal from './decimal.min.mjs';
|
||||
|
||||
## 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.
|
||||
* https://github.com/MikeMcl/decimal.js
|
||||
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||
* MIT Licence
|
||||
*/
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
/*!
|
||||
* decimal.js v10.4.3
|
||||
* decimal.js v10.5.0
|
||||
* An arbitrary-precision Decimal type for JavaScript.
|
||||
* https://github.com/MikeMcl/decimal.js
|
||||
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
|
||||
* MIT Licence
|
||||
*/
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "decimal.js",
|
||||
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
||||
"version": "10.4.3",
|
||||
"version": "10.5.0",
|
||||
"keywords": [
|
||||
"arbitrary",
|
||||
"precision",
|
||||
|
Loading…
Reference in New Issue
Block a user