Skip to content

Commit

Permalink
v8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Jan 13, 2019
1 parent 73097f5 commit 90672e7
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
#### 8.0.2
* 13/01/2019
* #209 `toPrecision` without argument should follow `toString`.
* Improve *Use* section of *README*.
* Optimise `toString(10)`.
* Add verson number to API doc.

#### 8.0.1
* 01/11/2018
* Rest parameter must be array type in *bignumber.d.ts*.

#### 8.0.1
* 01/11/2018
* Rest parameter must be array type in *bignumber.d.ts*.
Expand Down
2 changes: 1 addition & 1 deletion LICENCE
@@ -1,6 +1,6 @@
The MIT Licence.

Copyright (c) 2018 Michael Mclaughlin
Copyright (c) 2019 Michael Mclaughlin

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
4 changes: 2 additions & 2 deletions bignumber.js
Expand Up @@ -2,10 +2,10 @@
'use strict';

/*
* bignumber.js v8.0.1
* bignumber.js v8.0.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2019 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licensed.
*
* BigNumber.prototype methods | BigNumber methods
Expand Down
4 changes: 2 additions & 2 deletions bignumber.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bignumber.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bignumber.mjs
@@ -1,8 +1,8 @@
/*
* bignumber.js v8.0.1
* bignumber.js v8.0.2
* A JavaScript library for arbitrary-precision arithmetic.
* https://github.com/MikeMcl/bignumber.js
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>
* Copyright (c) 2019 Michael Mclaughlin <M8ch88l@gmail.com>
* MIT Licensed.
*
* BigNumber.prototype methods | BigNumber methods
Expand Down
7 changes: 4 additions & 3 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "8.0.1",
"version": "8.0.2",
"keywords": [
"arbitrary",
"precision",
Expand All @@ -16,7 +16,7 @@
"bigint",
"bignum"
],
"repository" : {
"repository": {
"type": "git",
"url": "https://github.com/MikeMcl/bignumber.js.git"
},
Expand All @@ -35,5 +35,6 @@
"scripts": {
"test": "node test/test",
"build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js"
}
},
"dependencies": {}
}

0 comments on commit 90672e7

Please sign in to comment.