This commit is contained in:
Michael Mclaughlin 2014-06-08 23:45:03 +01:00
parent d22793823b
commit 665b70a3ba
4 changed files with 8 additions and 5 deletions

View File

@ -213,6 +213,9 @@ See LICENCE.
## Change Log
####1.4.1
* 08/06/2014 Amend README.
####1.4.0
* 08/05/2014 Added `toNumber`.

View File

@ -1,10 +1,10 @@
/*! bignumber.js v1.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */
/*! bignumber.js v1.4.1 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function ( global ) {
'use strict';
/*
bignumber.js v1.4.0
bignumber.js v1.4.1
A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js
Copyright (c) 2012 Michael Mclaughlin <M8ch88l@gmail.com>

2
bignumber.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
"version": "1.4.0",
"version": "1.4.1",
"keywords": [
"arbitrary",
"precision",
@ -31,6 +31,6 @@
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
"build": "uglifyjs bignumber.js -c -m -o bignumber.min.js --preamble '/* bignumber.js v1.4.0 https://github.com/MikeMcl/bignumber.js/LICENCE */'"
"build": "uglifyjs bignumber.js -c -m -o bignumber.min.js --preamble '/* bignumber.js v1.4.1 https://github.com/MikeMcl/bignumber.js/LICENCE */'"
}
}