tools: Add next/prev version scripts
This commit is contained in:
parent
f1bb5dca85
commit
b3b8e74dbf
16
tools/getnextnodeversion.py
Normal file
16
tools/getnextnodeversion.py
Normal file
@ -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()
|
16
tools/getprevnodeversion.py
Normal file
16
tools/getprevnodeversion.py
Normal file
@ -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()
|
Loading…
x
Reference in New Issue
Block a user