pull/28/head v5.0.6
Michael Mclaughlin 8 years ago
parent f3777d8baf
commit 6a663287f0

@ -1,3 +1,7 @@
####5.0.6
* 22/02/2015
* Add bower.json.
####5.0.5 ####5.0.5
* 20/02/2015 * 20/02/2015
* Bugfix: #26 wrong precision applied. * Bugfix: #26 wrong precision applied.

@ -1,10 +1,10 @@
/*! decimal.js v5.0.5 https://github.com/MikeMcl/decimal.js/LICENCE */ /*! decimal.js v5.0.6 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) { ;(function (globalScope) {
'use strict'; 'use strict';
/* /*
* decimal.js v5.0.5 * decimal.js v5.0.6
* 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) 2016 Michael Mclaughlin <M8ch88l@gmail.com> * Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com>

2
decimal.min.js vendored

File diff suppressed because one or more lines are too long

@ -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": "5.0.5", "version": "5.0.6",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -28,6 +28,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 v5.0.5 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 v5.0.6 https://github.com/MikeMcl/decimal.js/LICENCE */\""
} }
} }
Loading…
Cancel
Save