diff --git a/extra/CHANGES.txt b/extra/CHANGES.txt index 2c9a0530f01..ce8d634a7f1 100644 --- a/extra/CHANGES.txt +++ b/extra/CHANGES.txt @@ -1,3 +1,25 @@ +2023-04-28 4.3.1 + + Breaking changes: + + all : namespace message reporting defines (#11142) + + General improvements: + + all : support deprecation for defines + + Bugfixes: + + all : fix --times with compilation server (#11091) + all : fix default type parameters not respecting imports (#11161) + all : fix bytecode bindings issues (#11098) + macro : allow local statics in macro functions (#11096) + cpp : fix AtomicInt warnings on cppia (#11105) + cpp : fix deprecated implicit casts of cpp.Int64 (#10998) + cpp : add white space around template type syntax (#11107) + java : don't check native signatures on extern functions (#11131) + lua : remove non existent luautf8 charCodeAt extern (#11097) + 2023-04-06 4.3.0 New features: diff --git a/haxe.opam b/haxe.opam index e9f4edfe681..bf19e490d45 100644 --- a/haxe.opam +++ b/haxe.opam @@ -1,6 +1,6 @@ opam-version: "2.0" name: "haxe" -version: "4.3.0" +version: "4.3.1" 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 d3b7f6428fa..ae4652b7838 100644 --- a/src/core/globals.ml +++ b/src/core/globals.ml @@ -27,7 +27,7 @@ type platform = | Hl | Eval -let version = 4300 +let version = 4301 let version_major = version / 1000 let version_minor = (version mod 1000) / 100 let version_revision = (version mod 100)