Browse Source

release 4.0.2

Aleksandr Kuzmenko 5 năm trước cách đây
mục cha
commit
fc976eac04
2 tập tin đã thay đổi với 16 bổ sung1 xóa
  1. 15 0
      extra/CHANGES.txt
  2. 1 1
      src/core/globals.ml

+ 15 - 0
extra/CHANGES.txt

@@ -1,3 +1,18 @@
+2019-11-11: 4.0.2
+
+	General improvements and optimizations:
+
+	php : improved performance of `haxe.io.Bytes.get()` (#8938)
+	php : improved performance of serialization/unserialization of `haxe.io.Bytes` (#8943)
+	php : improved performance of enum-related methods in `Type` class of standard library
+
+	Bugfixes:
+
+	haxelib : Fixed too strict requirements to haxelib.json data for private libs
+	all : fixed `@:using` static extensions on `Null<SomeType>` (#8928)
+	php : fixed static methods with the same name in parent and child classes (#8944)
+
+
 2019-11-04: 4.0.1
 
 	Bugfixes:

+ 1 - 1
src/core/globals.ml

@@ -24,7 +24,7 @@ type platform =
 	| Hl
 	| Eval
 
-let version = 4001
+let version = 4002
 let version_major = version / 1000
 let version_minor = (version mod 1000) / 100
 let version_revision = (version mod 100)