1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-09-28 22:40:48 +00:00
This commit is contained in:
Michael Mclaughlin 2017-06-25 23:39:53 +01:00
parent 4d05267ba8
commit 32f0a63095
8 changed files with 14 additions and 9 deletions

View File

@ -1,6 +1,7 @@
language: node_js language: node_js
node_js: node_js:
- "node" - "node"
- "8"
- "7" - "7"
- "6" - "6"
- "5" - "5"

View File

@ -1,3 +1,7 @@
#### 7.2.2
* 25/06/2017
* Bugfix: #57 Powers of -1 for integers over `Number.MAX_SAFE_INTEGER`.
#### 7.2.1 #### 7.2.1
* 04/05/2017 * 04/05/2017
* Fix *README* badges. * Fix *README* badges.

View File

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"main": "decimal.js", "main": "decimal.js",
"version": "7.2.1", "version": "7.2.2",
"homepage": "https://github.com/MikeMcl/decimal.js", "homepage": "https://github.com/MikeMcl/decimal.js",
"authors": [ "authors": [
"Michael Mclaughlin <M8ch88l@gmail.com>" "Michael Mclaughlin <M8ch88l@gmail.com>"

View File

@ -1,6 +1,6 @@
/* /*
* *
* decimal.js v7.2.1 * decimal.js v7.2.2
* An arbitrary-precision Decimal type for JavaScript. * An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js * https://github.com/MikeMcl/decimal.js
* Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com>

View File

@ -1,10 +1,10 @@
/*! decimal.js v7.2.1 https://github.com/MikeMcl/decimal.js/LICENCE */ /*! decimal.js v7.2.2 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) { ;(function (globalScope) {
'use strict'; 'use strict';
/* /*
* decimal.js v7.2.1 * decimal.js v7.2.2
* An arbitrary-precision Decimal type for JavaScript. * An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js * https://github.com/MikeMcl/decimal.js
* Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com>

4
decimal.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.", "description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "7.2.1", "version": "7.2.2",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -29,6 +29,6 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "node ./test/test.js", "test": "node ./test/test.js",
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.1 https://github.com/MikeMcl/decimal.js/LICENCE */\"" "build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""
} }
} }