Skip to content

Commit

Permalink
v9.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Dec 12, 2021
1 parent be3e64a commit 690d996
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -4,10 +4,13 @@ arch:
- amd64
node_js:
- "node"
- "lts/*"
- "17"
- "16"
- "15"
- "14"
- "13"
- "12"
- "11"
- "10"
- "8"
- "lts/*"
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
#### 9.0.2
* 12/12/21
* #250 [BUGFIX] Allow use of user-defined alphabet for base 10.
* #295 Remove *bignumber.min.js* and amend *README.md*.
* Update *.travis.yml* and *LICENCE.md*.

#### 9.0.1
* 28/09/20
* [BUGFIX] #276 Correct `sqrt` initial estimate.
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.md
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright © `<2020>` `Michael Mclaughlin`
Copyright © `<2021>` `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 bignumber.js
Expand Up @@ -2,10 +2,10 @@
'use strict';

/*
* bignumber.js v9.0.1
* bignumber.js v9.0.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2020 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licensed.
*
* BigNumber.prototype methods | BigNumber methods
Expand Down
4 changes: 2 additions & 2 deletions bignumber.mjs
@@ -1,8 +1,8 @@
/*
* bignumber.js v9.0.1
* bignumber.js v9.0.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2020 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2021 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licensed.
*
* BigNumber.prototype methods | BigNumber methods
Expand Down
2 changes: 1 addition & 1 deletion doc/API.html
Expand Up @@ -58,7 +58,7 @@

<div class="nav">

<b>v9.0.0</b>
<b>v9.0.2</b>

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

Expand Down
5 changes: 2 additions & 3 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "9.0.1",
"version": "9.0.2",
"keywords": [
"arbitrary",
"precision",
Expand Down Expand Up @@ -33,8 +33,7 @@
},
"license": "MIT",
"scripts": {
"test": "node test/test",
"build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js"
"test": "node test/test"
},
"dependencies": {}
}

0 comments on commit 690d996

Please sign in to comment.