From 760c0dd9972abadceba4e72edb1db13b2a4fb315 Mon Sep 17 00:00:00 2001 From: Rudy Ges Date: Wed, 7 Aug 2024 11:29:26 +0200 Subject: [PATCH] 4.3.6 --- extra/CHANGES.txt | 11 +++++++++++ haxe.opam | 2 +- src/core/globals.ml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/extra/CHANGES.txt b/extra/CHANGES.txt index a6155f8aa86..532657fa114 100644 --- a/extra/CHANGES.txt +++ b/extra/CHANGES.txt @@ -1,3 +1,14 @@ +2024-08-07 4.3.6 + + Bugfixes: + + display : do not define "display" for json rpc diagnostics (#11746) + cpp : null check interfaces (#11743) + hl : ignore WANT_READ/WANT_WRITE errors when the socket is known to be blocking (#11655) + hl : fix weird compiler error (#11690) + jvm : fix --java out -D jvm deprecation warning (#11739) + macro : Context.reportError should not abort build macros (#11741) + 2024-07-18 4.3.5 General improvements: diff --git a/haxe.opam b/haxe.opam index bb754406f45..54bb8e31f03 100644 --- a/haxe.opam +++ b/haxe.opam @@ -1,6 +1,6 @@ opam-version: "2.0" name: "haxe" -version: "4.3.5" +version: "4.3.6" synopsis: "Multi-target universal programming language" description: """ Haxe is an open source toolkit based on a modern, diff --git a/src/core/globals.ml b/src/core/globals.ml index 511a3409167..344b4683753 100644 --- a/src/core/globals.ml +++ b/src/core/globals.ml @@ -27,7 +27,7 @@ type platform = | Hl | Eval -let version = 4305 +let version = 4306 let version_major = version / 1000 let version_minor = (version mod 1000) / 100 let version_revision = (version mod 100)