浏览代码

3.2.1 Release

Cauê Waneck 10 年之前
父节点
当前提交
deab442439
共有 2 个文件被更改,包括 13 次插入1 次删除
  1. 12 0
      extra/CHANGES.txt
  2. 1 1
      main.ml

+ 12 - 0
extra/CHANGES.txt

@@ -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:

+ 1 - 1
main.ml

@@ -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)