Skip to content

Commit 5aacbc0

Browse files
web-flowgithub-actions[bot]
authored andcommitted
chore: update scripts/update-cli.ps1 to 2.36.0
1 parent 34cd01c commit 5aacbc0

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
@@ -14,9 +14,9 @@
1414
- Bump Cocoa SDK from v8.35.0 to v8.36.0 ([#3570](https://github.com/getsentry/sentry-dotnet/pull/3570), [#3575](https://github.com/getsentry/sentry-dotnet/pull/3575))
1515
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8360)
1616
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.35.0...8.36.0)
17-
- Bump CLI from v2.33.1 to v2.35.0 ([#3578](https://github.com/getsentry/sentry-dotnet/pull/3578), [#3599](https://github.com/getsentry/sentry-dotnet/pull/3599))
18-
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2350)
19-
- [diff](https://github.com/getsentry/sentry-cli/compare/2.33.1...2.35.0)
17+
- Bump CLI from v2.33.1 to v2.36.0 ([#3578](https://github.com/getsentry/sentry-dotnet/pull/3578), [#3599](https://github.com/getsentry/sentry-dotnet/pull/3599), [#3603](https://github.com/getsentry/sentry-dotnet/pull/3603))
18+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2360)
19+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.33.1...2.36.0)
2020
- Bump Native SDK from v0.7.8 to v0.7.9 ([#3577](https://github.com/getsentry/sentry-dotnet/pull/3577))
2121
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#079)
2222
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.8...0.7.9)

Directory.Build.props

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

7171
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
7272
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
73-
<SentryCLIVersion>2.35.0</SentryCLIVersion>
73+
<SentryCLIVersion>2.36.0</SentryCLIVersion>
7474
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
7575
</PropertyGroup>
7676

src/Sentry/Sentry.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@
116116
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</_OSArchitecture>
117117
</PropertyGroup>
118118
<ItemGroup>
119-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="77081405fff0587f0cc153c90857f7786f1137de027533dccdc9779400ada14f" />
120-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="85386eed7a464c64b13dba8d4012474c260b523676bb95b898aef28532a12376" />
121-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="36cf2f21865bd28cb7b673dfeedf0982757a5375b8e702418706c859b91adee8" />
122-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="b2d433f72669cc5995b2de06574c607ec7dc0bd3ce2374013cf2beba3ad38306" />
123-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="968b3b623867ab83c0163e8d8e9f21007e2f7dbaa248a8890798c9f4e098f69c" />
124-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="bb0287880f98a4656f1af1ec1ff33331f161990c89f69766d170771ce13909e8" />
125-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="2596622de6e6f4cb0580b3ce1341b4f62390231aea0c30fc127c991d379a6ac6" />
119+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="a9a4d6cd5fe9759ea7dd463f5811a05ee4040feb30243e5ce6a32b5071384b8e" />
120+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="7e250ef6f2f4adf38d4a13069c110067f3a4835ad7bb00162c2cbf1828f8eb58" />
121+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="93f8988e5c4c27ec47d5c03ea39edeb8a21f7816e82922aed2bfe01dc0a62a20" />
122+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="5c9ec874801e8df5e1f5a39130035a3e4ac84e6b5cf541a6eb1b05b1763a3ded" />
123+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="3a9ebce904a69bf42ef3f2f445b521765e68d1401524d2ed1d8def95db92b3b7" />
124+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="107f1f85b3eb7394ea37f9fde6b3110269532288e5de327ebeee2df8a31d7ba3" />
125+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="0c85361ff41d5fa863e9a0c93f72c1a3e90f2d1888c71223bb3c723f3c80fe81" />
126126
</ItemGroup>
127127

128128
<!-- Download the files -->

0 commit comments

Comments
 (0)