pull/122/head v10.0.1
Michael Mclaughlin 6 years ago
parent c6fb6a87b3
commit bf504624f8

@ -1,9 +1,13 @@
#### 10.0.1
* 24/05/2018
* Add `browser` field to *package.json*
#### 10.0.0
* 10/03/2018
* #88 `toNearest` to return the nearest multiple in the direction of the rounding mode.
* #82 #91 `const` to `var`.
* Add trigonometric precision limit explanantion to documentation.
* Put global ts definitions in separate file (see *bignumber.js* #143)
* Put global ts definitions in separate file (see *bignumber.js* #143).
#### 9.0.1
* 15/12/2017

@ -1,6 +1,6 @@
The MIT Licence.
Copyright (c) 2016, 2017, 2018 Michael Mclaughlin
Copyright (c) 2018 Michael Mclaughlin
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the

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

@ -1,10 +1,10 @@
/*! decimal.js v9.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */
/*! decimal.js v10.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */
;(function (globalScope) {
'use strict';
/*
* decimal.js v9.0.1
* decimal.js v10.0.1
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* 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 v10.0.0
* decimal.js v10.0.1
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2018 Michael Mclaughlin <M8ch88l@gmail.com>

@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "10.0.0",
"version": "10.0.1",
"keywords": [
"arbitrary",
"precision",
@ -30,7 +30,7 @@
"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 v10.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 v10.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""
},
"types": "decimal.d.ts"
}

Loading…
Cancel
Save