Skip to content

Commit

Permalink
Release 4.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Mar 4, 2024
1 parent 9b9cdfc commit dc1a43d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.3"
version: "4.3.4"
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/compiler/args.ml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let process_args arg_spec =

let parse_args com =
let usage = Printf.sprintf
"Haxe Compiler %s - (C)2005-2023 Haxe Foundation\nUsage: haxe%s <target> [options] [hxml files and dot paths...]\n"
"Haxe Compiler %s - (C)2005-2024 Haxe Foundation\nUsage: haxe%s <target> [options] [hxml files and dot paths...]\n"
s_version_full (if Sys.os_type = "Win32" then ".exe" else "")
in
let actx = {
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 = 4303
let version = 4304
let version_major = version / 1000
let version_minor = (version mod 1000) / 100
let version_revision = (version mod 100)
Expand Down

0 comments on commit dc1a43d

Please sign in to comment.