浏览代码

Bump version to 1.10.0

rdb 10 年之前
父节点
当前提交
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.
 
 // 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
 // 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:
     DEBVERSION = VERSION
 
-MAJOR_VERSION = VERSION[:3]
+MAJOR_VERSION = '.'.join(VERSION.split('.')[:2])
 
 if P3DSUFFIX is None:
     P3DSUFFIX = MAJOR_VERSION