blueloveTH 1 год назад
Родитель
Сommit
f44ba19be3
2 измененных файлов с 2 добавлено и 1 удалено
  1. 1 1
      include/pocketpy/common.h
  2. 1 0
      scripts/run_tests.py

+ 1 - 1
include/pocketpy/common.h

@@ -20,7 +20,7 @@
 #include <typeindex>
 #include <initializer_list>
 
-#define PK_VERSION				"1.5.0"
+#define PK_VERSION				"2.0.0"
 
 #include "config.h"
 #include "export.h"

+ 1 - 0
scripts/run_tests.py

@@ -64,6 +64,7 @@ class A:
     def get(self):
         return self.x
 
+
 print('ans_1:', add(1, 2))
 print('ans_2:', A('abc').get())
 exit()