mirror of https://github.com/apache/lucene.git
LUCENE-7265: Fix addVersion to cherry-pick downstream changes by using the change id
This commit is contained in:
parent
7bc50ec1ee
commit
54b873c2f9
|
@ -187,7 +187,10 @@ def read_config():
|
|||
return c
|
||||
|
||||
def main():
|
||||
c = read_config()
|
||||
c = read_config()
|
||||
|
||||
if c.changeid:
|
||||
cherry_pick_change(c.changeid)
|
||||
|
||||
print('\nAdding new version %s' % c.version)
|
||||
update_changes('lucene/CHANGES.txt', c.version)
|
||||
|
|
|
@ -121,6 +121,11 @@ version_prop_re = re.compile('version\.base=(.*)')
|
|||
def find_current_version():
|
||||
return version_prop_re.search(open('lucene/version.properties').read()).group(1)
|
||||
|
||||
def cherry_pick_change(changeid):
|
||||
print('\nCherry-picking downstream change %s...' % changeid, end='')
|
||||
run('git cherry-pick %s' % changeid)
|
||||
print('done')
|
||||
|
||||
if __name__ == '__main__':
|
||||
print('This is only a support module, it cannot be run')
|
||||
sys.exit(1)
|
||||
|
|
Loading…
Reference in New Issue