Skip to content

Commit

Permalink
v9.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Aug 28, 2023
1 parent ee5481b commit a05d98b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ arch:
node_js:
- "node"
- "lts/*"
- "20"
- "19"
- "18"
- "17"
- "16"
- "15"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### 9.1.2
* 28/08/23
* #354 Amend `round` to avoid bug in v8 Maglev compiler.
* [BUGFIX] #344 `minumum(0, -0)` should be `-0`.

#### 9.1.1
* 04/12/22
* #338 [BUGFIX] `exponentiatedBy`: ensure `0**-n === Infinity` for very large `n`.
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright © `<2022>` `Michael Mclaughlin`
Copyright © `<2023>` `Michael Mclaughlin`

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import BigNumber from './path/to/bignumber.mjs';
> Get a minified version from a CDN:
```html
<script src='https://cdn.jsdelivr.net/npm/bignumber.js@9.1.0/bignumber.min.js'></script>
<script src='https://cdn.jsdelivr.net/npm/bignumber.js@9.1.2/bignumber.min.js'></script>
```

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

```javascript
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.1.0/bignumber.mjs';
import BigNumber from 'https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.1.2/bignumber.mjs';
import BigNumber from 'https://unpkg.com/bignumber.js@latest/bignumber.mjs';
```

Expand Down
2 changes: 1 addition & 1 deletion bignumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

/*
* bignumber.js v9.1.1
* bignumber.js v9.1.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion bignumber.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* bignumber.js v9.1.1
* bignumber.js v9.1.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "9.1.1",
"version": "9.1.2",
"keywords": [
"arbitrary",
"precision",
Expand Down

0 comments on commit a05d98b

Please sign in to comment.