pull/83/head v9.0.1
Michael Mclaughlin 7 years ago
parent 8a7b6a3068
commit 875f6d0f7a

@ -1,3 +1,7 @@
#### 9.0.1
* 15/12/2017
* #80 Typings: correct return type.
#### 9.0.0 #### 9.0.0
* 14/12/2017 * 14/12/2017
* #78 Typings: remove `toFormat`. * #78 Typings: remove `toFormat`.

@ -1,7 +1,7 @@
{ {
"name": "decimal.js", "name": "decimal.js",
"main": "decimal.js", "main": "decimal.js",
"version": "9.0.0", "version": "9.0.1",
"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>"

@ -1,10 +1,10 @@
/*! decimal.js v9.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */ /*! decimal.js v9.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) { ;(function (globalScope) {
'use strict'; 'use strict';
/* /*
* decimal.js v9.0.0 * decimal.js v9.0.1
* 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>

2
decimal.min.js vendored

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
/* /*
* *
* decimal.js v9.0.0 * decimal.js v9.0.1
* 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>

@ -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": "9.0.0", "version": "9.0.1",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -29,7 +29,7 @@
"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 v9.0.0 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 v9.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""
}, },
"types": "decimal.d.ts" "types": "decimal.d.ts"
} }

Loading…
Cancel
Save