1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

minor release related fixes

This commit is contained in:
Gabor Kiss-Vamosi 2020-09-01 10:18:35 +02:00
parent de38ee4a21
commit e42128e937
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/**
* @file lv_conf.h
* Configuration file for v7.6.0-dev-dev
* Configuration file for v7.4.0-dev
*/
/*

View File

@ -348,7 +348,7 @@ def lvgl_update_master_version():
templ = fnmatch.filter(os.listdir('.'), '*templ*')
if templ[0]:
print("Updating version in " + templ[0])
cmd("sed -i -r 's/v[0-9]+\.[0-9]+\.[0-9]+/"+ ver_str +"/' " + templ[0])
cmd("sed -i -r 's/v[0-9]+\.[0-9]+\.[0-9]+.*/"+ ver_str +"/' " + templ[0])
cmd("git commit -am 'Update version'")
@ -381,7 +381,7 @@ def lvgl_update_dev_version():
templ = fnmatch.filter(os.listdir('.'), '*templ*')
if templ[0]:
print("Updating version in " + templ[0])
cmd("sed -i -r 's/v[0-9]+\.[0-9]+\.[0-9]+/"+ dev_ver_str +"/' " + templ[0])
cmd("sed -i -r 's/v[0-9]+\.[0-9]+\.[0-9]+.*/"+ dev_ver_str +"/' " + templ[0])
cmd("git commit -am 'Update dev version'")