summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-07-09 15:58:15 -0700
committerisaacs <i@izs.me>2013-07-09 15:58:15 -0700
commitb3b8e74dbf63cfb4d980b5cfc54c14aae071248d (patch)
tree50f8fa0e591bd5c72a61cd9653f0f8981ff06a7b
parentf1bb5dca85853e469c7d70582fbe4049e4316d72 (diff)
downloadnode-new-b3b8e74dbf63cfb4d980b5cfc54c14aae071248d.tar.gz
tools: Add next/prev version scripts
-rw-r--r--tools/getnextnodeversion.py16
-rw-r--r--tools/getprevnodeversion.py16
2 files changed, 32 insertions, 0 deletions
diff --git a/tools/getnextnodeversion.py b/tools/getnextnodeversion.py
new file mode 100644
index 0000000000..79ee771e2c
--- /dev/null
+++ b/tools/getnextnodeversion.py
@@ -0,0 +1,16 @@
+import os,re
+
+node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src',
+ 'node_version.h')
+
+f = open(node_version_h)
+
+for line in f:
+ if re.match('#define NODE_MAJOR_VERSION', line):
+ major = line.split()[2]
+ if re.match('#define NODE_MINOR_VERSION', line):
+ minor = line.split()[2]
+ if re.match('#define NODE_PATCH_VERSION', line):
+ patch = int(line.split()[2]) + 1
+
+print '%(major)s.%(minor)s.%(patch)s'% locals()
diff --git a/tools/getprevnodeversion.py b/tools/getprevnodeversion.py
new file mode 100644
index 0000000000..ff0d87d38c
--- /dev/null
+++ b/tools/getprevnodeversion.py
@@ -0,0 +1,16 @@
+import os,re
+
+node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src',
+ 'node_version.h')
+
+f = open(node_version_h)
+
+for line in f:
+ if re.match('#define NODE_MAJOR_VERSION', line):
+ major = line.split()[2]
+ if re.match('#define NODE_MINOR_VERSION', line):
+ minor = line.split()[2]
+ if re.match('#define NODE_PATCH_VERSION', line):
+ patch = int(line.split()[2]) - 1
+
+print '%(major)s.%(minor)s.%(patch)s'% locals()