Skip to content

Commit 5d6a187

Browse files
committed
v6.2.2
1 parent a037315 commit 5d6a187

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
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.2
2+
3+
* 10/09/24
4+
* #212 Bugfix: `sqrt` error when `Big.strict` is `true`.
5+
16
#### 6.2.1
27

38
* 09/07/22

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22
=====================
33

4-
Copyright © `<2022>` `Michael Mclaughlin`
4+
Copyright © `<2024>` `Michael Mclaughlin`
55

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

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.1/big.min.js'></script>
43+
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.2/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.1/big.mjs';
68-
import Big from 'https://unpkg.com/big.js@6.2.1/big.mjs';
67+
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.2/big.mjs';
68+
import Big from 'https://unpkg.com/big.js@6.2.2/big.mjs';
6969
```
7070

7171
## Use

big.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* big.js v6.2.1
2+
* big.js v6.2.2
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2022 Michael Mclaughlin
4+
* Copyright (c) 2024 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md
66
*/
77
;(function (GLOBAL) {

big.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* big.js v6.2.1
2+
* big.js v6.2.2
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2022 Michael Mclaughlin
4+
* Copyright (c) 2024 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md
66
*/
77

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

0 commit comments

Comments
 (0)