Skip to content

Commit

Permalink
v6.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Jul 9, 2022
1 parent d589a0e commit 8f44eb5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
#### 6.2.1

* 09/07/22
* #191 Bugfix: `round` may result in improper coefficient.

#### 6.2.0

* 04/06/22
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -40,7 +40,7 @@ import Big from './path/to/big.mjs';
Get a minified version from a CDN:
```html
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.0/big.min.js'></script>
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.1/big.min.js'></script>
```

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

```javascript
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.0/big.mjs';
import Big from 'https://unpkg.com/big.js@6.2.0/big.mjs';
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.1/big.mjs';
import Big from 'https://unpkg.com/big.js@6.2.1/big.mjs';
```

## Use
Expand Down
2 changes: 1 addition & 1 deletion big.js
@@ -1,5 +1,5 @@
/*
* big.js v6.2.0
* big.js v6.2.1
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2022 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
Expand Down
2 changes: 1 addition & 1 deletion big.mjs
@@ -1,5 +1,5 @@
/*
* big.js v6.2.0
* big.js v6.2.1
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2022 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "big.js",
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
"version": "6.2.0",
"version": "6.2.1",
"keywords": [
"arbitrary",
"precision",
Expand Down

0 comments on commit 8f44eb5

Please sign in to comment.