Skip to content

Commit 690d996

Browse files
committed
v9.0.2
1 parent be3e64a commit 690d996

File tree

7 files changed

+18
-10
lines changed

7 files changed

+18
-10
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ arch:
44
- amd64
55
node_js:
66
- "node"
7+
- "lts/*"
8+
- "17"
9+
- "16"
10+
- "15"
711
- "14"
812
- "13"
913
- "12"
1014
- "11"
1115
- "10"
1216
- "8"
13-
- "lts/*"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 9.0.2
2+
* 12/12/21
3+
* #250 [BUGFIX] Allow use of user-defined alphabet for base 10.
4+
* #295 Remove *bignumber.min.js* and amend *README.md*.
5+
* Update *.travis.yml* and *LICENCE.md*.
6+
17
#### 9.0.1
28
* 28/09/20
39
* [BUGFIX] #276 Correct `sqrt` initial estimate.

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 © `<2020>` `Michael Mclaughlin`
4+
Copyright © `<2021>` `Michael Mclaughlin`
55

66
Permission is hereby granted, free of charge, to any person
77
obtaining a copy of this software and associated documentation

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.0.1
5+
* bignumber.js v9.0.2
66
* A JavaScript library for arbitrary-precision arithmetic.
77
* https://github.com/MikeMcl/bignumber.js
8-
* Copyright (c) 2020 Michael Mclaughlin <M8ch88l@gmail.com>
8+
* Copyright (c) 2021 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.0.1
2+
* bignumber.js v9.0.2
33
* A JavaScript library for arbitrary-precision arithmetic.
44
* https://github.com/MikeMcl/bignumber.js
5-
* Copyright (c) 2020 Michael Mclaughlin <M8ch88l@gmail.com>
5+
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
66
* MIT Licensed.
77
*
88
* BigNumber.prototype methods | BigNumber methods

doc/API.html

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

5959
<div class="nav">
6060

61-
<b>v9.0.0</b>
61+
<b>v9.0.2</b>
6262

6363
<a class='nav-title' href="#">API</a>
6464

package.json

Lines changed: 2 additions & 3 deletions
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.0.1",
4+
"version": "9.0.2",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -33,8 +33,7 @@
3333
},
3434
"license": "MIT",
3535
"scripts": {
36-
"test": "node test/test",
37-
"build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js"
36+
"test": "node test/test"
3837
},
3938
"dependencies": {}
4039
}

0 commit comments

Comments
 (0)