Rudy Ges 1 éve
szülő
commit
760c0dd997
3 módosított fájl, 13 hozzáadás és 2 törlés
  1. 11 0
      extra/CHANGES.txt
  2. 1 1
      haxe.opam
  3. 1 1
      src/core/globals.ml

+ 11 - 0
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:

+ 1 - 1
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,

+ 1 - 1
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)