Skip to content

Commit 558954d

Browse files
John TobeyJohn Tobey
authored andcommitted
Version 1.1.5
1 parent 94abdee commit 558954d

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.1.5 (unstable) - 2012-03-01
2+
3+
* Fixed parser bug affecting numbers like "#e.021" on platforms
4+
where parseInt("021") returns 17 instead of 21 as specified by
5+
ECMA.
6+
* Various minor improvements and reorganizations.
7+
18
1.1.4 (unstable) - 2011-03-29
29

310
* ECMAScript-like conversions: sn(new Date()) means sn(+new Date()).

README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ script in this directory.
7272

7373
CHANGES
7474

75+
1.1.5 (unstable) - 2012-03-01
76+
77+
* Fixed parser bug affecting numbers like "#e.021".
78+
7579
1.1.2 (unstable) - 2011-03-19
7680

7781
* Do not modify the standard Number.prototype object.

schemeNumber.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ var SchemeNumber = SN;
310310
311311
For example, *[1,2,4]* corresponds to Version 1.2.4.
312312
*/
313-
SchemeNumber.VERSION = [1,1,4];
313+
SchemeNumber.VERSION = [1,1,5];
314314

315315
var floPow = flo.pow;
316316
var floLog = flo.log;

0 commit comments

Comments
 (0)