Skip to content

Commit

Permalink
Bump default version string to 1.2 (#30447)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinez-silabs authored Nov 13, 2023
1 parent adc2933 commit d1f695a
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 @@ -223,7 +223,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.1-%s-%s"' % (branchName, shortCommitSha))
'sl_matter_version_str="v1.2-%s-%s"' % (branchName, shortCommitSha))

if "GSDK_ROOT" in os.environ:
# EFR32 SDK is very large. If the SDK path is already known (the
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 @@ -291,7 +291,7 @@ else
{
ShortCommitSha=$(git describe --always --dirty --exclude '*')
branchName=$(git rev-parse --abbrev-ref HEAD)
optArgs+="sl_matter_version_str=\"v1.1-$branchName-$ShortCommitSha\" "
optArgs+="sl_matter_version_str=\"v1.2-$branchName-$ShortCommitSha\" "
} &>/dev/null
fi

Expand Down

0 comments on commit d1f695a

Please sign in to comment.