Skip to content

Commit

Permalink
4.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Aug 7, 2024
1 parent 458833c commit 760c0dd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions extra/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion haxe.opam
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/core/globals.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 760c0dd

Please # to comment.