Skip to content

Commit 8f44eb5

Browse files
committed
v6.2.1
1 parent d589a0e commit 8f44eb5

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### 6.2.1
2+
3+
* 09/07/22
4+
* #191 Bugfix: `round` may result in improper coefficient.
5+
16
#### 6.2.0
27

38
* 04/06/22

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import Big from './path/to/big.mjs';
4040
Get a minified version from a CDN:
4141
4242
```html
43-
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.0/big.min.js'></script>
43+
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.1/big.min.js'></script>
4444
```
4545

4646
### [Node.js](http://nodejs.org)
@@ -64,8 +64,8 @@ import Big from 'big.js';
6464
### [Deno](https://deno.land/)
6565

6666
```javascript
67-
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.0/big.mjs';
68-
import Big from 'https://unpkg.com/big.js@6.2.0/big.mjs';
67+
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.1/big.mjs';
68+
import Big from 'https://unpkg.com/big.js@6.2.1/big.mjs';
6969
```
7070

7171
## Use

big.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* big.js v6.2.0
2+
* big.js v6.2.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2022 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md

big.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* big.js v6.2.0
2+
* big.js v6.2.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2022 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "big.js",
33
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"keywords": [
66
"arbitrary",
77
"precision",

0 commit comments

Comments
 (0)