Skip to content

Commit 6d292a1

Browse files
committed
Updated CHANGES and versions
1 parent fa31483 commit 6d292a1

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGES

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
===== dev =====
1+
===== 1.4 (2013-12-01) =====
22

33
* Features/Changes
4-
** Add -linkall option to keep all provided primitives
4+
** Add missing primitives for OCaml 4.01
5+
** Improved Dom bindings (Hugo Heuzard and many other contributors)
6+
** Add -linkall option to keep all provided primitives (Pierre Chambard)
7+
** Improved tail-call optimization (Hugo Heuzard)
8+
** Added optimization levels: -o {1,2,3} (Hugo Heuzard)
9+
10+
* Bugfixes
11+
** Fixed some incorrect Dom bindings
12+
** Fixed hypot primitive (Pierre Chambard)
13+
** Fixed tail call optimization bug (some incorrect code was
14+
generated when the number of arguments did not match the number of
15+
function parameters)
16+
** Fixed a bug with empty strings
17+
** Fixed weak.js (primitives for Weak module)
518

619
===== 1.3 (2012-11-28) =====
720

compiler/generate.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ let f ch ?(standalone=true) ?linkall ((pc, blocks, _) as p) dl live_vars =
15021502
if !compact then Pretty_print.set_compact ch true;
15031503
if standalone then begin
15041504
Pretty_print.string ch
1505-
"// This program was compiled from OCaml by js_of_ocaml 1.3";
1505+
"// This program was compiled from OCaml by js_of_ocaml 1.4";
15061506
Pretty_print.newline ch;
15071507
let missing = Linker.resolve_deps ?linkall !compact ch (Primitive.get_used ()) in
15081508
list_missing missing

lib/META

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description = "Js_of_ocaml library"
2-
version = "dev"
2+
version = "1.4"
33
archive(byte) = "js_of_ocaml.cma"
44
requires = "js_of_ocaml.syntax,lwt"
55

0 commit comments

Comments
 (0)