pull/28/head v5.0.5
Michael Mclaughlin 8 years ago
parent 1a1a0ace51
commit 6effe2db27

@ -1,18 +1,22 @@
####5.0.5
* 20/02/2015
* Bugfix: #26 wrong precision applied.
####5.0.4
* 14/02/2015
* 14/02/2015
* Bugfix: #26 clone.
####5.0.3
* 06/02/2015
* 06/02/2015
* Refactor tests.
####5.0.2
* 05/02/2015
* 05/02/2015
* Added immutability tests.
* Minor *decimal.js* clean-up.
####5.0.1
* 28/01/2015
* 28/01/2015
* Bugfix: #20 cos mutates value.
* Add pi info to docs.
@ -22,18 +26,18 @@
* Added most of JavaScript's `Math` object methods as Decimal methods.
* Added `toBinary`, `toHexadecimal` and `toOctal` methods.
* Added `isPositive` method.
* Removed the 15 significant digit limit for numbers.
* Removed the 15 significant digit limit for numbers.
* `toFraction` now returns an array of two Decimals, not two strings.
* String values containing whitespace or a plus sign are no longer accepted.
* `valueOf` now returns `'-0'` for minus zero.
* `comparedTo` now returns `NaN` not `null` for comparisons with `NaN`.
* `Decimal.max` and `Decimal.min` no longer accept an array.
* The Decimal constructor and `toString` no longer accept a base argument.
* The Decimal constructor and `toString` no longer accept a base argument.
* Binary, hexadecimal and octal prefixes are now recognised for string values.
* Removed `Decimal.errors` configuration property.
* Removed `toFormat` method.
* Removed `Decimal.ONE`.
* Renamed `exponential` method to `naturalExponential`.
* Renamed `exponential` method to `naturalExponential`.
* Renamed `Decimal.constructor` method to `Decimal.clone`.
* Simplified error handling and amended error messages.
* Refactored the test suite.

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

6
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

@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "5.0.4",
"version": "5.0.5",
"keywords": [
"arbitrary",
"precision",
@ -28,6 +28,6 @@
"license": "MIT",
"scripts": {
"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.4 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.5 https://github.com/MikeMcl/decimal.js/LICENCE */\""
}
}
Loading…
Cancel
Save