Skip to content

Commit 74ee129

Browse files
release 4.1.2
1 parent aff96e7 commit 74ee129

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

extra/CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2020-XX-XX 4.1.2
1+
2020-06-19 4.1.2
22

33
Bugfixes:
44

extra/release-checklist.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

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

24+
# Cleanup
25+
26+
- Remove issues with released fixes from the "Hotfix" milestone: https://github.com/HaxeFoundation/haxe/milestone/18
27+
2328
# Announcing the release
2429

2530
- Find someone to announce the release on our various communication channels

opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "haxe"
3-
version: "4.1.0"
3+
version: "4.1.2"
44
synopsis: "Multi-target universal programming language"
55
description: """
66
Haxe is an open source toolkit based on a modern,

src/core/globals.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type platform =
2424
| Hl
2525
| Eval
2626

27-
let version = 4101
27+
let version = 4102
2828
let version_major = version / 1000
2929
let version_minor = (version mod 1000) / 100
3030
let version_revision = (version mod 100)

0 commit comments

Comments
 (0)