]> xenbits.xensource.com Git - people/pauldu/xenbus.git/commitdiff
Update minor version number to disambiguate from old mercurial repo.
authorOwen Smith <owen.smith@citrix.com>
Fri, 9 Aug 2013 11:01:51 +0000 (12:01 +0100)
committerOwen Smith <owen.smith@citrix.com>
Fri, 9 Aug 2013 11:01:51 +0000 (12:01 +0100)
CHANGELOG
build.py
clean.py

index 00bf1f8bca319f9f62f796ee8cff5849a09662e2..6ed5cd0fb539f9d174593f4dc708640ee054fdb0 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,2 +1,7 @@
 7.0.0 (2013-06-19):
 * Initial public release
+
+7.1.0 (2013-08-09):
+* Update minor number to disambiguate new builds from builds of the
+  old mercurial repo.
+
index 613149b4846f73cf77915f4a7349bd60d450174e..e016829dbf81b7c024a6cdc1dc880cb96044f5bf 100644 (file)
--- a/build.py
+++ b/build.py
@@ -294,7 +294,7 @@ if __name__ == '__main__':
         revision.close()
 
     os.environ['MAJOR_VERSION'] = '7'
-    os.environ['MINOR_VERSION'] = '0'
+    os.environ['MINOR_VERSION'] = '1'
     os.environ['MICRO_VERSION'] = '0'
 
     if 'BUILD_NUMBER' not in os.environ.keys():
index 4f77eadc2db7175bcb49ec4c32d7b66a5445a41a..87b1ca727f3da8879924a796b8d456f7c7faf9c0 100644 (file)
--- a/clean.py
+++ b/clean.py
@@ -2,7 +2,7 @@
 
 import os, sys
 
-file = os.popen('hg status')
+file = os.popen('git status -u --porcelain')
 
 for line in file:
     item = line.split(' ')