Skip to content

Commit

Permalink
pretend to make a release
Browse files Browse the repository at this point in the history
let's see if Skial falls for it!
  • Loading branch information
Simn committed Oct 12, 2018
1 parent a200541 commit 7eb789f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions extra/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
XXXX-XX-XX:
2018-10-13: 4.0.0-preview.5
New features:

all : support Unicode strings properly on all targets
Expand Down Expand Up @@ -35,7 +35,7 @@ XXXX-XX-XX:

Removals :

all : disallowed get_x/set_x property syntax (#4699)
all : disallowed get_x/set_x property syntax, use get/set instead (#4699)
all : disallowed default values on interface variables (#4087)
all : disallowed `implements Dynamic` on non-extern classes (#6191)
all : warn about expressions in extern non-inline fields (#5898)
Expand Down
1 change: 1 addition & 0 deletions extra/release-checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Make sure CHANGES.txt has a proper date set!
- Make sure `version` in globals.ml has the correct value
- Check if the protocolVersion in displayJson.ml has to be updated
- Wait for the CI to build (check https://builds.haxe.org)
- Make an empty GitHub release in https://github.com/HaxeFoundation/haxe/releases
- Get https://github.com/simn/hxgithub
Expand Down
2 changes: 1 addition & 1 deletion src/context/display/displayJson.ml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ let handler =
];
"protocolVersion",jobject [
"major",jint 0;
"minor",jint 1;
"minor",jint 2;
"patch",jint 0;
]
])
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 @@ let version = 4000
let version_major = version / 1000
let version_minor = (version mod 1000) / 100
let version_revision = (version mod 100)
let version_pre = Some "preview.4"
let version_pre = Some "preview.5"

let macro_platform = ref Neko

Expand Down

0 comments on commit 7eb789f

Please sign in to comment.