Rudy Ges 4 ماه پیش
والد
کامیت
e0b355c6be
3فایلهای تغییر یافته به همراه22 افزوده شده و 2 حذف شده
  1. 20 0
      extra/CHANGES.txt
  2. 1 1
      src/compiler/args.ml
  3. 1 1
      src/core/globals.ml

+ 20 - 0
extra/CHANGES.txt

@@ -1,3 +1,23 @@
+2025-05-09 4.3.7
+
+	General improvements:
+
+	all : update bundled haxelib version to 4.1.1
+	all : update bundled neko version to 2.4.1 (#12183)
+	all : use -w rules instead of defines to configure warnings (#11826, #12013)
+
+	Bugfixes:
+
+	all : fix compiler hanging issue (#11820)
+	all : local statics fixes (#11803, #11849)
+	all : fix for inline constructor bug triggering "Unbound variable" (#12169)
+	all : check caught error position when recovering from match typing failure (#12098)
+	macro : local statics vs ExprTools.map (#12030)
+	eval : https fixes (mbedtls update) (#11646)
+	eval : ssl cert verification failures on windows (#11838)
+	hl/c : fix comparison of HArray,HArray and HBytes,HBytes (#11610)
+	cppia : generate scriptable functions for overriden functions (#11773)
+
 2024-08-07 4.3.6
 2024-08-07 4.3.6
 
 
 	Bugfixes:
 	Bugfixes:

+ 1 - 1
src/compiler/args.ml

@@ -40,7 +40,7 @@ let process_args arg_spec =
 
 
 let parse_args com =
 let parse_args com =
 	let usage = Printf.sprintf
 	let usage = Printf.sprintf
-		"Haxe Compiler %s - (C)2005-2024 Haxe Foundation\nUsage: haxe%s <target> [options] [hxml files and dot paths...]\n"
+		"Haxe Compiler %s - (C)2005-2025 Haxe Foundation\nUsage: haxe%s <target> [options] [hxml files and dot paths...]\n"
 		s_version_full (if Sys.os_type = "Win32" then ".exe" else "")
 		s_version_full (if Sys.os_type = "Win32" then ".exe" else "")
 	in
 	in
 	let actx = {
 	let actx = {

+ 1 - 1
src/core/globals.ml

@@ -27,7 +27,7 @@ type platform =
 	| Hl
 	| Hl
 	| Eval
 	| Eval
 
 
-let version = 4306
+let version = 4307
 let version_major = version / 1000
 let version_major = version / 1000
 let version_minor = (version mod 1000) / 100
 let version_minor = (version mod 1000) / 100
 let version_revision = (version mod 100)
 let version_revision = (version mod 100)