Skip to content

Commit

Permalink
3.2.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
waneck committed Oct 12, 2015
1 parent 4ed6d04 commit deab442
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions extra/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2015-10-11: 3.2.1

Bugfixes:

cs/java : fixed `-dce no` issues
cs/java : fixed how KExpr type parameters are generated
cs : fixed enum creation by reflection problem
cpp : do not rely in reflection to make interfaces work for non-first interface parents
cpp : fixed setting of static variables via reflection when class has no member variables
cpp : make sure StringMap's h field is kept if we use StringMap
js : Avoid the use of `eval`/`Function` to get the top-level defined type/var to not break ContentSecurityPolicy

2015-05-12: 3.2.0

New features:
Expand Down
2 changes: 1 addition & 1 deletion main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ exception Abort
exception Completion of string


let version = 3200
let version = 3201
let version_major = version / 1000
let version_minor = (version mod 1000) / 100
let version_revision = (version mod 100)
Expand Down

0 comments on commit deab442

Please sign in to comment.