Skip to content

Commit b410852

Browse files
committed
v2.2.5
1 parent 4a3182a commit b410852

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
#### 2.2.5
2+
* 08/09/2017
3+
* #5 Fix import.
4+
15
#### 2.2.4
26
* 15/08/2017
3-
* Add TypeScript type declaration file, *decimal.d.ts*.
4-
* Correct `toPositive` and `toNegative` examples.
7+
* Add TypeScript type declaration file, *decimal.d.ts*
8+
* Correct `toPositive` and `toNegative` examples
59

610
#### 2.2.3
711
* 04/05/2017
8-
* Fix *README* badge.
12+
* Fix *README* badge
913

1014
#### 2.2.2
1115
05/04/2017

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Decimal.set({
4545
});
4646
```
4747

48-
In this library the `e` property of a Decimal is the base 10000000 exponent, not the base 10 exponent as in *decimal.js*.<br>
48+
Also, in this library the `e` property of a Decimal is the base 10000000 exponent, not the base 10 exponent as in *decimal.js*.<br>
4949
Use the `exponent` method to get the base 10 exponent.
5050

5151
## Quickstart

decimal.js

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

55

66
/*
7-
* decimal.js-light v2.2.4
7+
* decimal.js-light v2.2.5
88
* An arbitrary-precision Decimal type for JavaScript.
99
* https://github.com/MikeMcl/decimal.js-light
1010
* Copyright (c) 2017 Michael Mclaughlin <[email protected]>

decimal.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/decimal.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
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.2.4",
4+
"version": "2.2.5",
55
"keywords": [
66
"arbitrary",
77
"precision",
@@ -29,6 +29,6 @@
2929
"license": "MIT",
3030
"scripts": {
3131
"test": "node ./test/test.js",
32-
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.2.4 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
32+
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js-light v2.2.5 https://github.com/MikeMcl/decimal.js-light/LICENCE */\""
3333
}
3434
}

0 commit comments

Comments
 (0)