Skip to content

Commit e0b355c

Browse files
committed
4.3.7
1 parent 08999fa commit e0b355c

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

extra/CHANGES.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
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+
121
2024-08-07 4.3.6
222

323
Bugfixes:

src/compiler/args.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ let process_args arg_spec =
4040

4141
let parse_args com =
4242
let usage = Printf.sprintf
43-
"Haxe Compiler %s - (C)2005-2024 Haxe Foundation\nUsage: haxe%s <target> [options] [hxml files and dot paths...]\n"
43+
"Haxe Compiler %s - (C)2005-2025 Haxe Foundation\nUsage: 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 = {

src/core/globals.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type platform =
2727
| Hl
2828
| Eval
2929

30-
let version = 4306
30+
let version = 4307
3131
let version_major = version / 1000
3232
let version_minor = (version mod 1000) / 100
3333
let version_revision = (version mod 100)

0 commit comments

Comments
 (0)