diff options
| author | hathach <[email protected]> | 2025-11-10 11:02:20 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-11-10 11:02:20 +0700 |
| commit | 6364a4df7a6e3a2b3583fe11a88665f06d18628b (patch) | |
| tree | 45e0a0b2f8acfd811cce050475fc828bc2e034d2 /tools | |
| parent | 989acc15287f86bb1fd3f262d69b3dc9c9c28da8 (diff) | |
| parent | 96f35fc0a559aa09da70e0dede5a43081615723f (diff) | |
Merge branch 'master' into fork/c1570/improved_docs
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/make_release.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/make_release.py b/tools/make_release.py index 488ad4901..0e7919f46 100755 --- a/tools/make_release.py +++ b/tools/make_release.py @@ -45,6 +45,17 @@ with open(f_library_json, 'w') as f: f.write(fdata) ################### +# sonar-project.properties +################### +f_sonar_properties = 'sonar-project.properties' +with open(f_sonar_properties) as f: + fdata = f.read() + fdata = re.sub(r'(sonar\.projectVersion=)\d+\.\d+\.\d+', rf'\1{version}', fdata) + +with open(f_sonar_properties, 'w') as f: + f.write(fdata) + +################### # docs/info/changelog.rst ################### |
