Skip to content

Commit

Permalink
Bump version prefix to v1.3 in the build scripts. (#32734)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs authored Mar 27, 2024
1 parent bd6c7e8 commit c5bf533
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/build/builders/efr32.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __init__(self,
['git', 'describe', '--always', '--dirty', '--exclude', '*']).decode('ascii').strip()
branchName = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']).decode('ascii').strip()
self.extra_gn_options.append(
'sl_matter_version_str="v1.2-%s-%s"' % (branchName, shortCommitSha))
'sl_matter_version_str="v1.3-%s-%s"' % (branchName, shortCommitSha))
if enable_917_soc:
if use_rps_extension is False:
self.extra_gn_options.append('use_rps_extension=false')
Expand Down
2 changes: 1 addition & 1 deletion scripts/examples/gn_silabs_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ else
{
ShortCommitSha=$(git describe --always --dirty --exclude '*')
branchName=$(git rev-parse --abbrev-ref HEAD)
optArgs+="sl_matter_version_str=\"v1.2-$branchName-$ShortCommitSha\" "
optArgs+="sl_matter_version_str=\"v1.3-$branchName-$ShortCommitSha\" "
} &>/dev/null
fi

Expand Down

0 comments on commit c5bf533

Please sign in to comment.