Parcourir la source

update version

Simon Krajewski il y a 8 ans
Parent
commit
3184da3674
3 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1 1
      extra/CHANGES.txt
  2. 1 1
      extra/release-checklist.txt
  3. 1 1
      src/globals.ml

+ 1 - 1
extra/CHANGES.txt

@@ -1,4 +1,4 @@
-2016-11-29: 3.4.0-RC2
+2016-11-29: 3.4.0-RC1
 
 	New features:
 

+ 1 - 1
extra/release-checklist.txt

@@ -7,7 +7,7 @@
 # Building the binaries and installers
 
 - Make sure CHANGES.txt has a proper date set!
-- Make sure `version` in main.ml has the correct value.
+- Make sure `version` in globals.ml has the correct value.
 - Update README.md:
   - Installing Haxe: update "Latest stable version"
   - Version compatibility: add/update the Haxe/Neko version

+ 1 - 1
src/globals.ml

@@ -20,7 +20,7 @@ type platform =
 	| Python
 	| Hl
 
-let version = 3300
+let version = 3400
 let version_major = version / 1000
 let version_minor = (version mod 1000) / 100
 let version_revision = (version mod 100)