diff options
| author | hathach <[email protected]> | 2025-10-25 16:30:42 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-10-25 17:21:57 +0700 |
| commit | d7c4bf14b464a509120ff18f94e9b02cd1c6f9fa (patch) | |
| tree | bc41fd3ddf8a7e78613d2d74f2d528d0e5c0c838 /tools | |
| parent | 5818db49b2de8689a07007a5e4d329b94d67ef42 (diff) | |
add IAR CStat to static_analysis.yml
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 ################### |
