This commit is contained in:
Michael Mclaughlin 2015-03-25 23:07:41 +00:00
parent 4d009c2cc3
commit c5eeb7e9de
4 changed files with 12 additions and 9 deletions

View File

@ -1,5 +1,7 @@
![bignumber.js](https://raw.githubusercontent.com/MikeMcl/bignumber.js/gh-pages/bignumberjs.png)
*WARNING: Critical division bug found in v2.0.0 - v2.0.3. Fixed in v2.0.4+*
A JavaScript library for arbitrary-precision decimal and non-decimal arithmetic.
[![Build Status](https://travis-ci.org/MikeMcl/bignumber.js.svg)](https://travis-ci.org/MikeMcl/bignumber.js)
@ -236,9 +238,6 @@ Michael
<a href="mailto:M8ch88l@gmail.com">M8ch88l@gmail.com</a>
BTC
:small_orange_diamond: 1GHTAxHbBHW5TrUu6oq84Yr3LUCcUXKZmJ :small_orange_diamond:
## Licence
MIT.
@ -247,6 +246,10 @@ See [LICENCE](https://github.com/MikeMcl/bignumber.js/blob/master/LICENCE).
## Change Log
####2.0.5
* 25/03/2015
* Amend README. Remove bitcoin address.
####2.0.4
* 25/03/2015
* Critical bugfix #58: division.

View File

@ -1,10 +1,10 @@
/*! bignumber.js v2.0.4 https://github.com/MikeMcl/bignumber.js/LICENCE */
/*! bignumber.js v2.0.5 https://github.com/MikeMcl/bignumber.js/LICENCE */
;(function (global) {
'use strict';
/*
bignumber.js v2.0.4
bignumber.js v2.0.5
A JavaScript library for arbitrary-precision arithmetic.
https://github.com/MikeMcl/bignumber.js
Copyright (c) 2015 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": "2.0.4",
"version": "2.0.5",
"keywords": [
"arbitrary",
"precision",
@ -31,6 +31,6 @@
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
"build": "uglifyjs bignumber.js --source-map doc/bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v2.0.4 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
"build": "uglifyjs bignumber.js --source-map doc/bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v2.0.5 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
}
}