Skip to content

Commit f842264

Browse files
committed
v6.2.0
1 parent 4418329 commit f842264

File tree

9 files changed

+1399
-11
lines changed

9 files changed

+1399
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 6.2.0
2+
3+
* 04/06/22
4+
* Add note that a Big number is created from a numbers `toString` value.
5+
* #173 Add `Symbol.for('nodejs.util.inspect.custom')`.
6+
* Allow `BigInt` when `Big.strict` is `true`.
7+
* #177 Add `neg` method to negate a Big number.
8+
* Add to *package.json* exports.
9+
110
#### 6.1.1
211

312
* 03/05/21

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 © `<2021>` `Michael Mclaughlin`
4+
Copyright © `<2022>` `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.0.0/big.min.js'></script>
43+
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.0/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.0.0/big.mjs';
68-
import Big from 'https://unpkg.com/big.js@6.0.0/big.mjs';
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';
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.1.1
2+
* big.js v6.2.0
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2021 Michael Mclaughlin
4+
* Copyright (c) 2022 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.1.1
2+
* big.js v6.2.0
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2021 Michael Mclaughlin
4+
* Copyright (c) 2022 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md
66
*/
77

docs/index.html

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

5858
<a class='nav-title' href="#">API</a>
5959
<select id="version" name="version" onchange="location.href=this.value;this.selectedIndex=0">
60-
<option value="" selected>v6.1.x</option>
60+
<option value="" selected>v6.2.x</option>
61+
<option value="legacy/v6.1.x.html">v6.1.x</option>
6162
<option value="legacy/v6.0.x.html">v6.0.x</option>
6263
<option value="legacy/v5.2.x.html">v5.2.x</option>
6364
<option value="legacy/v5.1.x.html">v5.1.x</option>

0 commit comments

Comments
 (0)