Skip to content

Commit 1bcf067

Browse files
committed
v10.3.1
1 parent 00d5e30 commit 1bcf067

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 10.3.1
2+
* 25/06/2021
3+
* Remove minified versions. Refresh *README*.
4+
15
#### 10.3.0
26
* 22/06/2021
37
* Support underscores as separators.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
152152
// Using `toFixed()` to avoid exponential notation:
153153
x = new Decimal('0.0000001')
154154
x.toString() // '1e-7'
155-
x.toFixed() // ''0.0000001'
155+
x.toFixed() // '0.0000001'
156156
```
157157
158158
And there are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values.

decimal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
/*
6-
* decimal.js v10.3.0
6+
* decimal.js v10.3.1
77
* An arbitrary-precision Decimal type for JavaScript.
88
* https://github.com/MikeMcl/decimal.js
99
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>

decimal.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* decimal.js v10.3.0
2+
* decimal.js v10.3.1
33
* An arbitrary-precision Decimal type for JavaScript.
44
* https://github.com/MikeMcl/decimal.js
55
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>

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.3.0",
4+
"version": "10.3.1",
55
"keywords": [
66
"arbitrary",
77
"precision",

0 commit comments

Comments
 (0)