Skip to content

Commit 01b3ce3

Browse files
committed
v5.2.2
1 parent 3e525eb commit 01b3ce3

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 5.2.2
2+
3+
* 18/10/18
4+
* #109 Remove opencollective dependency.
5+
6+
#### 5.2.1
7+
8+
* Delete *bower.json*.
9+
110
#### 5.2.0
211

312
* 09/10/18

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ $ npm install big.js
3535
const Big = require('big.js');
3636
```
3737

38-
ES6 module (*big.mjs*):
38+
ES6 module:
3939

4040
```javascript
41-
import Big from 'big.js';
41+
import Big from 'big.mjs';
4242
```
4343
## Use
4444

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.2.1
2+
* big.js v5.2.2
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>
55
* https://github.com/MikeMcl/big.js/LICENCE
@@ -107,7 +107,7 @@
107107
Big.RM = RM;
108108
Big.NE = NE;
109109
Big.PE = PE;
110-
Big.version = '5.2.1';
110+
Big.version = '5.2.2';
111111

112112
return Big;
113113
}

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.2.1
2+
* big.js v5.2.2
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
44
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>
55
* https://github.com/MikeMcl/big.js/LICENCE
@@ -104,7 +104,7 @@ function _Big_() {
104104
Big.RM = RM;
105105
Big.NE = NE;
106106
Big.PE = PE;
107-
Big.version = '5.2.1';
107+
Big.version = '5.2.2';
108108

109109
return Big;
110110
}

package.json

Lines changed: 2 additions & 6 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.2.1",
4+
"version": "5.2.2",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -36,17 +36,13 @@
3636
"license": "MIT",
3737
"scripts": {
3838
"test": "node ./test/every-test.js",
39-
"build": "uglifyjs big.js --source-map -c -m -o big.min.js",
40-
"postinstall": "opencollective postinstall"
39+
"build": "uglifyjs big.js --source-map -c -m -o big.min.js"
4140
},
4241
"files": [
4342
"big.js",
4443
"big.mjs",
4544
"big.min.js"
4645
],
47-
"dependencies": {
48-
"opencollective": "^1.0.3"
49-
},
5046
"collective": {
5147
"type": "opencollective",
5248
"url": "https://opencollective.com/bigjs"

0 commit comments

Comments
 (0)