File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1+ 2025-05-09 4.3.7
2+
3+ General improvements:
4+
5+ all : update bundled haxelib version to 4.1.1
6+ all : update bundled neko version to 2.4.1 (#12183)
7+ all : use -w rules instead of defines to configure warnings (#11826, #12013)
8+
9+ Bugfixes:
10+
11+ all : fix compiler hanging issue (#11820)
12+ all : local statics fixes (#11803, #11849)
13+ all : fix for inline constructor bug triggering "Unbound variable" (#12169)
14+ all : check caught error position when recovering from match typing failure (#12098)
15+ macro : local statics vs ExprTools.map (#12030)
16+ eval : https fixes (mbedtls update) (#11646)
17+ eval : ssl cert verification failures on windows (#11838)
18+ hl/c : fix comparison of HArray,HArray and HBytes,HBytes (#11610)
19+ cppia : generate scriptable functions for overriden functions (#11773)
20+
1212024-08-07 4.3.6
222
323 Bugfixes:
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ let process_args arg_spec =
4040
4141let parse_args com =
4242 let usage = Printf. sprintf
43- " Haxe Compiler %s - (C)2005-2024 Haxe Foundation\n Usage: haxe%s <target> [options] [hxml files and dot paths...]\n "
43+ " Haxe Compiler %s - (C)2005-2025 Haxe Foundation\n Usage: haxe%s <target> [options] [hxml files and dot paths...]\n "
4444 s_version_full (if Sys. os_type = " Win32" then " .exe" else " " )
4545 in
4646 let actx = {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ type platform =
2727 | Hl
2828 | Eval
2929
30- let version = 4306
30+ let version = 4307
3131let version_major = version / 1000
3232let version_minor = (version mod 1000 ) / 100
3333let version_revision = (version mod 100 )
You can’t perform that action at this time.
0 commit comments