Skip to content

Commit fcbd555

Browse files
committed
v2.2.0
1 parent 63336d8 commit fcbd555

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
test
2-
excluded
2+
excluded
3+
.*

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 2.2.0
2+
10/01/2017
3+
* Add `exponent` method
4+
15
#### 2.0.2
26
12/12/2016
37
* npm publish

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT Expat Licence.
22

3-
Copyright (c) 2016 Michael Mclaughlin
3+
Copyright (c) 2016, 2017 Michael Mclaughlin
44

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

decimal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*! decimal.js-light v2.0.2 https://github.com/MikeMcl/decimal.js-light/LICENCE */
1+
/*! decimal.js-light v2.2.0 https://github.com/MikeMcl/decimal.js-light/LICENCE */
22
;(function (globalScope) {
33
'use strict';
44

55

66
/*
7-
* decimal.js-light v2.0.2
7+
* decimal.js-light v2.2.0
88
* An arbitrary-precision Decimal type for JavaScript.
99
* https://github.com/MikeMcl/decimal.js-light
1010
* Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com>

decimal.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.

doc/decimal.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "decimal.js-light",
33
"description": "An arbitrary-precision Decimal type for JavaScript.",
4-
"version": "2.0.2",
4+
"version": "2.2.0",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -28,6 +28,6 @@
2828
"license": "MIT",
2929
"scripts": {
3030
"test": "node ./test/test.js",
31-
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.0.2 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
31+
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.2.0 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
3232
}
3333
}

0 commit comments

Comments
 (0)