Skip to content

Commit e19cc83

Browse files
committed
v7.0.1
1 parent 461a07c commit e19cc83

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1+
#### 7.0.1
2+
3+
* 21/04/25
4+
* Remove legacy docs and version selector.
5+
16
#### 7.0.0
27

38
* 21/04/25
49
* Add GitHub Actions CI.
510
* #210 Check for `Symbol` support.
611
* #220 Prevent new constructor creation if `undefined` is passed explicitly.
7-
* Remove legacy docs and version selector.
812

913
#### 6.2.2
1014

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import Big from './path/to/big.mjs';
4141
Get a minified version from a CDN:
4242
4343
```html
44-
<script src='https://cdn.jsdelivr.net/npm/big.js@7.0.0/big.min.js'></script>
44+
<script src='https://cdn.jsdelivr.net/npm/big.js@7.0.1/big.min.js'></script>
4545
```
4646

4747
### [Node.js](http://nodejs.org)
@@ -65,7 +65,7 @@ import Big from 'big.js';
6565
### [Deno](https://deno.land/)
6666

6767
```javascript
68-
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v7.0.0/big.mjs';
68+
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v7.0.1/big.mjs';
6969
import Big from 'https://unpkg.com/big.js@latest/big.mjs';
7070
```
7171

big.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* big.js v7.0.0
2+
* big.js v7.0.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2025 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 v7.0.0
2+
* big.js v7.0.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2025 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md

docs/index.html

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

5858
<a class='nav-title' href="#">API</a>
5959

60-
<span>v7.0.0</span>
60+
<span>v7.0.x</span>
6161

6262
<b> CONSTRUCTOR </b>
6363
<ul>

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

0 commit comments

Comments
 (0)