Kaynağa Gözat

Release 4.3.1

Rudy Ges 2 yıl önce
ebeveyn
işleme
964c84c817
3 değiştirilmiş dosya ile 24 ekleme ve 2 silme
  1. 22 0
      extra/CHANGES.txt
  2. 1 1
      haxe.opam
  3. 1 1
      src/core/globals.ml

+ 22 - 0
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
 2023-04-06 4.3.0
 
 
 	New features:
 	New features:

+ 1 - 1
haxe.opam

@@ -1,6 +1,6 @@
 opam-version: "2.0"
 opam-version: "2.0"
 name: "haxe"
 name: "haxe"
-version: "4.3.0"
+version: "4.3.1"
 synopsis: "Multi-target universal programming language"
 synopsis: "Multi-target universal programming language"
 description: """
 description: """
 Haxe is an open source toolkit based on a modern,
 Haxe is an open source toolkit based on a modern,

+ 1 - 1
src/core/globals.ml

@@ -27,7 +27,7 @@ type platform =
 	| Hl
 	| Hl
 	| Eval
 	| Eval
 
 
-let version = 4300
+let version = 4301
 let version_major = version / 1000
 let version_major = version / 1000
 let version_minor = (version mod 1000) / 100
 let version_minor = (version mod 1000) / 100
 let version_revision = (version mod 100)
 let version_revision = (version mod 100)