Skip to content

Commit a05d98b

Browse files
committed
v9.1.2
1 parent ee5481b commit a05d98b

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ arch:
55
node_js:
66
- "node"
77
- "lts/*"
8+
- "20"
9+
- "19"
10+
- "18"
811
- "17"
912
- "16"
1013
- "15"

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### 9.1.2
2+
* 28/08/23
3+
* #354 Amend `round` to avoid bug in v8 Maglev compiler.
4+
* [BUGFIX] #344 `minumum(0, -0)` should be `-0`.
5+
16
#### 9.1.1
27
* 04/12/22
38
* #338 [BUGFIX] `exponentiatedBy`: ensure `0**-n === Infinity` for very large `n`.

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 © `<2023>` `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: 2 additions & 2 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/[email protected].0/bignumber.min.js'></script>
51+
<script src='https://cdn.jsdelivr.net/npm/[email protected].2/bignumber.min.js'></script>
5252
```
5353

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

7373
```javascript
74-
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.1.0/bignumber.mjs';
74+
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.1.2/bignumber.mjs';
7575
import BigNumber from 'https://unpkg.com/bignumber.js@latest/bignumber.mjs';
7676
```
7777

bignumber.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33

44
/*
5-
* bignumber.js v9.1.1
5+
* bignumber.js v9.1.2
66
* A JavaScript library for arbitrary-precision arithmetic.
77
* https://github.com/MikeMcl/bignumber.js
88
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>

bignumber.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* bignumber.js v9.1.1
2+
* bignumber.js v9.1.2
33
* A JavaScript library for arbitrary-precision arithmetic.
44
* https://github.com/MikeMcl/bignumber.js
55
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>

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

0 commit comments

Comments
 (0)