Skip to content

Commit

Permalink
v10.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Jun 25, 2021
1 parent 00d5e30 commit 1bcf067
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 10.3.1
* 25/06/2021
* Remove minified versions. Refresh *README*.

#### 10.3.0
* 22/06/2021
* Support underscores as separators.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Decimal.pow(2, 0.0979843) // '1.0702770511687781839'
// Using `toFixed()` to avoid exponential notation:
x = new Decimal('0.0000001')
x.toString() // '1e-7'
x.toFixed() // ''0.0000001'
x.toFixed() // '0.0000001'
```
And there are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values.
Expand Down
2 changes: 1 addition & 1 deletion decimal.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


/*
* decimal.js v10.3.0
* decimal.js v10.3.1
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion decimal.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* decimal.js v10.3.0
* decimal.js v10.3.1
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "10.3.0",
"version": "10.3.1",
"keywords": [
"arbitrary",
"precision",
Expand Down

0 comments on commit 1bcf067

Please sign in to comment.