This commit is contained in:
Michael Mclaughlin 2015-12-10 19:52:33 +00:00
parent b5285dda35
commit 9a312f5b87
6 changed files with 12 additions and 8 deletions

View File

@ -244,6 +244,10 @@ See [LICENCE](https://github.com/MikeMcl/bignumber.js/blob/master/LICENCE).
## Change Log ## Change Log
####2.1.2
* 10/12/2015
* Bugfix: `window.crypto` not assigned to `crypto`.
####2.1.1 ####2.1.1
* 09/12/2015 * 09/12/2015
* Prevent code bundler from adding `crypto` shim. * Prevent code bundler from adding `crypto` shim.

View File

@ -1,10 +1,10 @@
/*! bignumber.js v2.1.1 https://github.com/MikeMcl/bignumber.js/LICENCE */ /*! bignumber.js v2.1.2 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function (global) { ;(function (global) {
'use strict'; 'use strict';
/* /*
bignumber.js v2.1.1 bignumber.js v2.1.2
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) 2015 Michael Mclaughlin <M8ch88l@gmail.com> Copyright (c) 2015 Michael Mclaughlin <M8ch88l@gmail.com>

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": "2.1.1", "version": "2.1.2",
"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": "2.1.1", "version": "2.1.2",
"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 v2.1.1 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 v2.1.2 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
} }
} }