Browse Source

upgrade hl version to 1.15

Yuxiao Mao 7 months ago
parent
commit
d85d1f2667
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/hl.h
  2. 1 1
      src/main.c

+ 1 - 1
src/hl.h

@@ -27,7 +27,7 @@
 	https://github.com/HaxeFoundation/hashlink/wiki/
 **/
 
-#define HL_VERSION	0x010E00
+#define HL_VERSION	0x010F00
 
 #if defined(_WIN32)
 #	define HL_WIN

+ 1 - 1
src/main.c

@@ -200,7 +200,7 @@ int main(int argc, pchar *argv[]) {
 		file = PSTR("hlboot.dat");
 		fchk = pfopen(file,"rb");
 		if( fchk == NULL ) {
-			printf("HL/JIT %d.%d.%d (c)2015-2023 Haxe Foundation\n  Usage : hl [--debug <port>] [--debug-wait] <file>\n",HL_VERSION>>16,(HL_VERSION>>8)&0xFF,HL_VERSION&0xFF);
+			printf("HL/JIT %d.%d.%d (c)2015-2025 Haxe Foundation\n  Usage : hl [--debug <port>] [--debug-wait] <file>\n",HL_VERSION>>16,(HL_VERSION>>8)&0xFF,HL_VERSION&0xFF);
 			return 1;
 		}
 		fclose(fchk);