Skip to content

Commit 5a3dc4d

Browse files
committed
Correct Big.version number
1 parent 8248fef commit 5a3dc4d

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
# big.js #
3-
2+
# big.js #
3+
44
A small, fast JavaScript library for arbitrary-precision decimal arithmetic.
55

66
The little sister to [bignumber.js](https://github.com/MikeMcl/bignumber.js/).
@@ -176,6 +176,11 @@ See LICENCE.
176176

177177
## Change Log
178178

179+
####5.0.1
180+
181+
* 13/10/17
182+
* Correct `Big.version` number.
183+
179184
####5.0.0
180185

181186
* 13/10/17

big.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* big.js v5.0.0
2+
* big.js v5.0.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com>
55
* https://github.com/MikeMcl/big.js/LICENCE
@@ -106,7 +106,7 @@
106106
Big.RM = RM;
107107
Big.NE = NE;
108108
Big.PE = PE;
109-
Big.version = '4.0.2';
109+
Big.version = '5.0.1';
110110

111111
return Big;
112112
}

big.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

big.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* big.js v5.0.0
2+
* big.js v5.0.1
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com>
55
* https://github.com/MikeMcl/big.js/LICENCE
@@ -104,7 +104,7 @@ function factory() {
104104
Big.RM = RM;
105105
Big.NE = NE;
106106
Big.PE = PE;
107-
Big.version = '4.0.2';
107+
Big.version = '5.0.1';
108108

109109
return Big;
110110
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "big.js",
33
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -34,7 +34,7 @@
3434
"license": "MIT",
3535
"scripts": {
3636
"test": "node ./test/every-test.js",
37-
"build": "uglifyjs big.js --source-map doc/big.js.map -c -m -o big.min.js --preamble \"/* big.js v5.0.0 https://github.com/MikeMcl/big.js/LICENCE */\""
37+
"build": "uglifyjs big.js --source-map doc/big.js.map -c -m -o big.min.js --preamble \"/* big.js v5.0.1 https://github.com/MikeMcl/big.js/LICENCE */\""
3838
},
3939
"files": [
4040
"big.js",

0 commit comments

Comments
 (0)