rdb 10 лет назад
Родитель
Сommit
9c0076a09b
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      dtool/PandaVersion.pp
  2. 1 1
      makepanda/makepanda.py

+ 1 - 1
dtool/PandaVersion.pp

@@ -3,7 +3,7 @@
 // ppremake scripts for Panda.
 // ppremake scripts for Panda.
 
 
 // Use spaces to separate the major, minor, and sequence numbers here.
 // Use spaces to separate the major, minor, and sequence numbers here.
-#define PANDA_VERSION 1 9 1
+#define PANDA_VERSION 1 10 0
 
 
 // This variable will be defined to false in the CVS repository, but
 // This variable will be defined to false in the CVS repository, but
 // scripts that generate source tarballs and/or binary releases for
 // scripts that generate source tarballs and/or binary releases for

+ 1 - 1
makepanda/makepanda.py

@@ -367,7 +367,7 @@ if RUNTIME or RTDIST:
 if DEBVERSION is None:
 if DEBVERSION is None:
     DEBVERSION = VERSION
     DEBVERSION = VERSION
 
 
-MAJOR_VERSION = VERSION[:3]
+MAJOR_VERSION = '.'.join(VERSION.split('.')[:2])
 
 
 if P3DSUFFIX is None:
 if P3DSUFFIX is None:
     P3DSUFFIX = MAJOR_VERSION
     P3DSUFFIX = MAJOR_VERSION