Skip to content

Commit 928b4cf

Browse files
committed
v10.5.0
1 parent 9817dd1 commit 928b4cf

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

.travis.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
language: node_js
22
node_js:
33
- "node"
4+
- "23"
5+
- "22"
6+
- "21"
7+
- "20"
8+
- "19"
49
- "18"
510
- "17"
611
- "16"
@@ -16,8 +21,5 @@ node_js:
1621
- "6"
1722
- "5"
1823
- "4"
19-
- "0.12"
20-
- "0.11"
21-
- "0.10"
22-
- "0.8"
23-
- "iojs"
24+
25+

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
#### 10.5.0
2+
* 23/01/2025
3+
* #216 TypeScript: instantiation without `new` keyword
4+
* #181 Support `BigInt`
5+
* #241 Match `Math.max` and `Math.min` negative zero handling
6+
* #217 Compute `acos` with less cancellation near `x = 1`
7+
18
#### 10.4.3
29
* 04/12/2022
310
* #211 Remove `toStringTag` declaration for type compatibility.

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT Licence.
22

3-
Copyright (c) 2022 Michael Mclaughlin
3+
Copyright (c) 2025 Michael Mclaughlin
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ An arbitrary-precision Decimal type for JavaScript.
44

55
[![npm version](https://img.shields.io/npm/v/decimal.js.svg)](https://www.npmjs.com/package/decimal.js)
66
[![npm downloads](https://img.shields.io/npm/dw/decimal.js)](https://www.npmjs.com/package/decimal.js)
7-
[![Build Status](https://travis-ci.org/MikeMcl/decimal.js.svg)](https://travis-ci.org/MikeMcl/decimal.js)
87
[![CDNJS](https://img.shields.io/cdnjs/v/decimal.js.svg)](https://cdnjs.com/libraries/decimal.js)
98

109
<br>
@@ -243,4 +242,4 @@ import Decimal from './decimal.min.mjs';
243242
244243
## Licence
245244
246-
[The MIT Licence (Expat).](LICENCE.md)
245+
[The MIT Licence](LICENCE.md)

decimal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44

55
/*!
6-
* decimal.js v10.4.3
6+
* decimal.js v10.5.0
77
* An arbitrary-precision Decimal type for JavaScript.
88
* https://github.com/MikeMcl/decimal.js
9-
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>
9+
* Copyright (c) 2025 Michael Mclaughlin <[email protected]>
1010
* MIT Licence
1111
*/
1212

decimal.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*!
2-
* decimal.js v10.4.3
2+
* decimal.js v10.5.0
33
* An arbitrary-precision Decimal type for JavaScript.
44
* https://github.com/MikeMcl/decimal.js
5-
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>
5+
* Copyright (c) 2025 Michael Mclaughlin <[email protected]>
66
* MIT Licence
77
*/
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decimal.js",
33
"description": "An arbitrary-precision Decimal type for JavaScript.",
4-
"version": "10.4.3",
4+
"version": "10.5.0",
55
"keywords": [
66
"arbitrary",
77
"precision",

0 commit comments

Comments
 (0)