123456789101112131415161718192021222324252627282930313233343536373839 |
- import fileinput
- import sys
- import re
- if len(sys.argv) < 2:
- print("Please provide a new version string!")
- exit
- newVersion = sys.argv[1]
- shortVersion = re.match('^(\\d+\\.\\d+).', newVersion).group(1)
- print("New version: {0}".format(newVersion))
- # CMakeList
- regExp = re.compile('(\\s+)VERSION \\S+')
- for line in fileinput.input(['CMakeLists.txt'], inplace = True):
- print(regExp.sub('\\1VERSION ' + newVersion, line), end='')
- # vnotex.json
- regExp = re.compile('(\\s+)"version" : "\\S+"')
- for line in fileinput.input(['src/data/core/vnotex.json'], inplace = True):
- print(regExp.sub('\\1"version" : "' + newVersion + '"', line), end='')
- # ci-xxx.yml
- regExp = re.compile('(\\s+)VNOTE_VER: \\S+')
- for line in fileinput.input(['.github/workflows/ci-win.yml', '.github/workflows/ci-linux.yml', '.github/workflows/ci-macos.yml'], inplace = True):
- print(regExp.sub('\\1VNOTE_VER: ' + newVersion, line), end='')
- # Info.plist
- regExp = re.compile('(\\s+)<string>(?!10\\.15)\\d+\\.\\d+</string>')
- for line in fileinput.input(['src/data/core/Info.plist'], inplace = True):
- print(regExp.sub('\\1<string>' + shortVersion + '</string>', line), end='')
- regExp = re.compile('(\\s+)<string>\\d+\\.\\d+\\.\\d+</string>')
- for line in fileinput.input(['src/data/core/Info.plist'], inplace = True):
- print(regExp.sub('\\1<string>' + newVersion + '</string>', line), end='')
- regExp = re.compile('(\\s+)<string>\\d+\\.\\d+\\.\\d+\\.\\d+</string>')
- for line in fileinput.input(['src/data/core/Info.plist'], inplace = True):
- print(regExp.sub('\\1<string>' + newVersion + '.1</string>', line), end='')
|