Skip to content

Commit

Permalink
release 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RealyUniqueName committed Jun 19, 2020
1 parent aff96e7 commit 74ee129
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extra/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2020-XX-XX 4.1.2
2020-06-19 4.1.2

Bugfixes:

Expand Down
5 changes: 5 additions & 0 deletions extra/release-checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

- Make sure CHANGES.txt has a proper date set!
- Make sure `version` in globals.ml has the correct value
- Update `version` in `./opam`
- Check if the protocolVersion in displayJson.ml has to be updated
- Make an empty GitHub release in https://github.com/HaxeFoundation/haxe/releases (do this first because we need the tag for the builds)
- Wait for the CI to build (check https://build.haxe.org/builds/haxe/)
Expand All @@ -20,6 +21,10 @@
- If everything was working, run the command again without `--dry` (and probably without the `-d`)
- Update https://github.com/HaxeFoundation/haxe.org/blob/staging/downloads/versions.json

# Cleanup

- Remove issues with released fixes from the "Hotfix" milestone: https://github.com/HaxeFoundation/haxe/milestone/18

# Announcing the release

- Find someone to announce the release on our various communication channels
2 changes: 1 addition & 1 deletion opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "haxe"
version: "4.1.0"
version: "4.1.2"
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type platform =
| Hl
| Eval

let version = 4101
let version = 4102
let version_major = version / 1000
let version_minor = (version mod 1000) / 100
let version_revision = (version mod 100)
Expand Down

0 comments on commit 74ee129

Please sign in to comment.