Skip to content

Commit 36601a0

Browse files
chore: update scripts/update-cli.ps1 to 2.21.5 (#2851)
1 parent 343d921 commit 36601a0

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
- Bump Cocoa SDK from v8.15.0 to v8.15.2 ([#2812](https://github.com/getsentry/sentry-dotnet/pull/2812), [#2816](https://github.com/getsentry/sentry-dotnet/pull/2816))
1212
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8152)
1313
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.15.0...8.15.2)
14-
- Bump CLI from v2.21.2 to v2.21.4 ([#2811](https://github.com/getsentry/sentry-dotnet/pull/2811), [#2834](https://github.com/getsentry/sentry-dotnet/pull/2834))
15-
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2214)
16-
- [diff](https://github.com/getsentry/sentry-cli/compare/2.21.2...2.21.4)
14+
- Bump CLI from v2.21.2 to v2.21.5 ([#2811](https://github.com/getsentry/sentry-dotnet/pull/2811), [#2834](https://github.com/getsentry/sentry-dotnet/pull/2834), [#2851](https://github.com/getsentry/sentry-dotnet/pull/2851))
15+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2215)
16+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.21.2...2.21.5)
1717

1818
## 3.41.0
1919

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
104104
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
105-
<SentryCLIVersion>2.21.4</SentryCLIVersion>
105+
<SentryCLIVersion>2.21.5</SentryCLIVersion>
106106
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
107107
</PropertyGroup>
108108

src/Sentry/Sentry.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@
9595
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</_OSArchitecture>
9696
</PropertyGroup>
9797
<ItemGroup>
98-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="5ac4778bb4ee9ad3cc95bc1083858559104017397e7fbd90b31cca508450d732" />
99-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="73e7c8d6ee289d190a1de662f3cf49666e4a4c65221a15ce09af2618c9a883c3" />
100-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="73f2c494c8d2c70b787993eedb0b31c9741c19381bd340081457ab386c4b646f" />
101-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="3cb5f769281ceb64b3524cc27268de3786afd4dd9bbfe3ab4f0f499faa79e746" />
102-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="1dfd60c8c26a68bc42f612bef19655c86de0b0e291813d02b1498506e36f1bed" />
103-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="d1aafe8c0ccf8ee615b867b7135b192562d5313393cb646a2b0999ebed347bde" />
104-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="9c9bfc1f35bd038bafb5390926de3e800891fa8aa576e11d46995ed06ad1ceea" />
98+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="e142beae033d0cbd04b27678be9a5c5ea1ec03fc3f385055088f5e9606077a5f" />
99+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="88bda5b074b896f557ac7eb23442bf53d4c2085c478d6bf6464821ff2463bda6" />
100+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="74838d45d7915f1c9bc08b262a7cc57da8b1d597faa7d754aab4be8eb7af8e17" />
101+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="45038805edf469c20f9b1fcc5d2185aafe6c3f9540223265b8a78a0054742e0a" />
102+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="6027f652fc3f9ad17a8b20df027d78dc458a1747db33657a4df0d9c9ba6d2ccd" />
103+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="265a9bdcbf91cfc5453fb3f67762e9ebd5a8675af92b9bad7816cdbc637248f1" />
104+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="38ca36c244c6a45e27f4b5a914b2b1eaa99b502972c630a8fec4473f053e76e4" />
105105
</ItemGroup>
106106

107107
<!-- Download the files -->

0 commit comments

Comments
 (0)