forked from jtobey/javascript-bignum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGES
More file actions
90 lines (55 loc) · 2.36 KB
/
Copy pathCHANGES
File metadata and controls
90 lines (55 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
1.3.1 (unstable) - 2012-03-22
* Refactoring to support separation into modules.
* Ported test suite to Node.js.
1.3.0 (unstable) - 2012-03-07
* Unstable development branch containing new plugin API.
* Major refactoring to support number type extensions.
* Cleaned up and formalized the double-dispatch system.
* Minor logic and performance fixes, but test suite performance
lags that of 1.2.0 by about 20%.
1.2.0 - 2012-03-04
* Stable release with unmodified Number.prototype.
* Added test case for recent fix.
1.1.6 (unstable) - 2012-03-04
* Fixed bug in fn["eqv?"] affecting non-numeric arguments.
1.1.5 (unstable) - 2012-03-01
* Fixed parser bug affecting numbers like "#e.021" on platforms
where parseInt("021") returns 17 instead of 21 as specified by
ECMA.
* Various minor improvements and reorganizations.
1.1.4 (unstable) - 2011-03-29
* ECMAScript-like conversions: sn(new Date()) means sn(+new Date()).
1.1.2 (unstable) - 2011-03-19
* Do not modify the standard Number.prototype object.
1.0.9 - 2011-03-19
* Fixes backported from 1.1 branch:
* Make sn("garbage") raise an appropriate exception.
* Convert fn.atan second argument.
* Avoid no-such-method in x.valueOf() for complex x.
1.1.1 (unstable) - 2011-03-19
* Made code work without affecting Number.prototype (no API yet).
1.1.0 (unstable) - 2011-03-17
* Unstable branch.
* Wrap all(?) inexact real results with toFlonum.
* Bug fix: Convert fn.atan second argument.
1.0.8 - 2011-03-16
* Make sn("#e1@2") equivalent to fn.exact("1@2").
1.0.7 - 2011-03-04
* parser: optimize simple integer parsing.
1.0.6 - 2011-02-13
* toFixed: bug fix: include leading "-" in negatives rounded to zero.
1.0.5 - 2011-02-12
* Fixed a bug in toFixed affecting rounding.
1.0.4 - 2011-02-11
* Bugs fixed in SchemeNumber implementation of ECMAScript Number
methods: toFixed, toPrecision, and toExponential. Thanks to
theonesmiley.
1.0.3 - 2011-02-10
* Faster big integer arithmetic, courtesy of Vitaly Magerya.
Approximately 20% test suite speedup.
1.0.2 - 2011-02-10
* Moved argument conversion from internal methods to public
functions. Approximately 10% test suite speedup.
1.0.1 - 2011-02-10
* Support ECMA standard formatting methods: toFixed,
toExponential, toPrecision.