浏览代码

set version to 3.2.0

Simon Krajewski 11 年之前
父节点
当前提交
5880bd9b2b
共有 7 个文件被更改,包括 7 次插入7 次删除
  1. 1 1
      main.ml
  2. 1 1
      std/cpp/zip/Compress.hx
  3. 1 1
      std/cpp/zip/Flush.hx
  4. 1 1
      std/cpp/zip/Uncompress.hx
  5. 1 1
      std/neko/zip/Compress.hx
  6. 1 1
      std/neko/zip/Flush.hx
  7. 1 1
      std/neko/zip/Uncompress.hx

+ 1 - 1
main.ml

@@ -45,7 +45,7 @@ exception Abort
 exception Completion of string
 
 
-let version = 3103
+let version = 3200
 let version_major = version / 1000
 let version_minor = (version mod 1000) / 100
 let version_revision = (version mod 100)

+ 1 - 1
std/cpp/zip/Compress.hx

@@ -1,5 +1,5 @@
 package cpp.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Compress = haxe.zip.Compress;
 #end

+ 1 - 1
std/cpp/zip/Flush.hx

@@ -1,5 +1,5 @@
 package cpp.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Flush = haxe.zip.FlushMode;
 #end

+ 1 - 1
std/cpp/zip/Uncompress.hx

@@ -1,5 +1,5 @@
 package cpp.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Uncompress = haxe.zip.Uncompress;
 #end

+ 1 - 1
std/neko/zip/Compress.hx

@@ -1,5 +1,5 @@
 package neko.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Compress = haxe.zip.Compress;
 #end

+ 1 - 1
std/neko/zip/Flush.hx

@@ -1,5 +1,5 @@
 package neko.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Flush = haxe.zip.FlushMode;
 #end

+ 1 - 1
std/neko/zip/Uncompress.hx

@@ -1,5 +1,5 @@
 package neko.zip;
 
-#if (haxe_ver < 3.2)
+#if (haxe_ver < 3.4)
 typedef Uncompress = haxe.zip.Uncompress;
 #end