Skip to content

Commit

Permalink
Release 4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Apr 28, 2023
1 parent 017b498 commit 964c84c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions 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:
Expand Down
2 changes: 1 addition & 1 deletion 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,
Expand Down
2 changes: 1 addition & 1 deletion src/core/globals.ml
Expand Up @@ -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)
Expand Down

0 comments on commit 964c84c

Please sign in to comment.