This commit is contained in:
Michael Mclaughlin 2017-01-09 11:15:14 +00:00
parent 18bbdc8836
commit 46ed093a78
7 changed files with 14 additions and 10 deletions

View File

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

View File

@ -243,6 +243,10 @@ See [LICENCE](https://github.com/MikeMcl/bignumber.js/blob/master/LICENCE).
## Change Log ## Change Log
#### 4.0.0
* 09/01/2017
* Replace BigNumber.isBigNumber method with isBigNumber prototype property.
#### 3.1.2 #### 3.1.2
* 08/01/2017 * 08/01/2017
* Minor documentation edit. * Minor documentation edit.

View File

@ -1,13 +1,13 @@
/*! bignumber.js v3.1.2 https://github.com/MikeMcl/bignumber.js/LICENCE */ /*! bignumber.js v4.0.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function (globalObj) { ;(function (globalObj) {
'use strict'; 'use strict';
/* /*
bignumber.js v3.1.2 bignumber.js v4.0.0
A JavaScript library for arbitrary-precision arithmetic. A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js https://github.com/MikeMcl/bignumber.js
Copyright (c) 2016 Michael Mclaughlin <M8ch88l@gmail.com> Copyright (c) 2017 Michael Mclaughlin <M8ch88l@gmail.com>
MIT Expat Licence MIT Expat Licence
*/ */

File diff suppressed because one or more lines are too long

4
bignumber.min.js vendored

File diff suppressed because one or more lines are too long

View File

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

View File

@ -1,7 +1,7 @@
{ {
"name": "bignumber.js", "name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic", "description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "3.1.2", "version": "4.0.0",
"keywords": [ "keywords": [
"arbitrary", "arbitrary",
"precision", "precision",
@ -31,6 +31,6 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "node ./test/every-test.js", "test": "node ./test/every-test.js",
"build": "uglifyjs bignumber.js --source-map bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v3.1.2 https://github.com/MikeMcl/bignumber.js/LICENCE */\"" "build": "uglifyjs bignumber.js --source-map bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v4.0.0 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
} }
} }