diff --git a/extra/CHANGES.txt b/extra/CHANGES.txt index 979010010a3..d90a10ef2d5 100644 --- a/extra/CHANGES.txt +++ b/extra/CHANGES.txt @@ -1,4 +1,4 @@ -2021-02-XX 4.2.0: +2021-02-09 4.2.0: New features: diff --git a/opam b/opam index 02304859052..5b2be5cf3cc 100644 --- a/opam +++ b/opam @@ -1,6 +1,6 @@ opam-version: "2.0" name: "haxe" -version: "4.1.5" +version: "4.2.0" 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 c469bd8c696..6a0f09498a7 100644 --- a/src/core/globals.ml +++ b/src/core/globals.ml @@ -28,7 +28,7 @@ let version = 4200 let version_major = version / 1000 let version_minor = (version mod 1000) / 100 let version_revision = (version mod 100) -let version_pre = Some "rc.1" +let version_pre = None let macro_platform = ref Neko