Skip to content

Commit a626ba7

Browse files
committed
v9.2.1
1 parent 9385f0e commit a626ba7

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
#### 9.2.1
2+
* 08/04/25
3+
* ##371 #382 Add `BigNumber` as named export.
4+
5+
#### 9.2.0
6+
* 03/04/25
7+
* #355 Support `BigInt` argument.
8+
* #371 Provide separate type definitions for CommonJS and ES modules.
9+
* #374 Correct `comparedTo` return type.
10+
111
#### 9.1.2
212
* 28/08/23
313
* #354 Amend `round` to avoid bug in v8 Maglev compiler.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import BigNumber from './path/to/bignumber.mjs';
4848
> Get a minified version from a CDN:
4949
5050
```html
51-
<script src='https://cdn.jsdelivr.net/npm/bignumber.js@9.2.0/bignumber.min.js'></script>
51+
<script src='https://cdn.jsdelivr.net/npm/bignumber.js@9.2.1/bignumber.min.js'></script>
5252
```
5353

5454
### [Node.js](http://nodejs.org)
@@ -71,8 +71,8 @@ import { BigNumber } from "./node_modules/bignumber.js/bignumber.mjs";
7171
### [Deno](https://deno.land/)
7272

7373
```javascript
74-
// @deno-types="https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.0/bignumber.d.mts"
75-
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.0/bignumber.mjs';
74+
// @deno-types="https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.1/bignumber.d.mts"
75+
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.1/bignumber.mjs';
7676

7777
// @deno-types="https://unpkg.com/bignumber.js@latest/bignumber.d.mts"
7878
import { BigNumber } from 'https://unpkg.com/bignumber.js@latest/bignumber.mjs';

bignumber.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
'use strict';
33

44
/*
5-
* bignumber.js v9.1.2
5+
* bignumber.js v9.2.1
66
* A JavaScript library for arbitrary-precision arithmetic.
77
* https://github.com/MikeMcl/bignumber.js
8-
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
8+
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
99
* MIT Licensed.
1010
*
1111
* BigNumber.prototype methods | BigNumber methods

bignumber.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* bignumber.js v9.1.2
2+
* bignumber.js v9.2.1
33
* A JavaScript library for arbitrary-precision arithmetic.
44
* https://github.com/MikeMcl/bignumber.js
5-
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
5+
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
66
* MIT Licensed.
77
*
88
* BigNumber.prototype methods | BigNumber methods

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bignumber.js",
33
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
4-
"version": "9.1.2",
4+
"version": "9.2.1",
55
"keywords": [
66
"arbitrary",
77
"precision",

0 commit comments

Comments
 (0)