Skip to content

Commit b5bbbf9

Browse files
[main] Update dependencies from dotnet/arcade (#5616)
[main] Update dependencies from dotnet/arcade
1 parent c7b4036 commit b5bbbf9

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

eng/Version.Details.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
<ProductDependencies>
55
</ProductDependencies>
66
<ToolsetDependencies>
7-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24375.3">
7+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24414.3">
88
<Uri>https://github.com/dotnet/arcade</Uri>
9-
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
9+
<Sha>4d15f8d1f2d61f6513b70f0bcd4bd3c1828a3a68</Sha>
1010
</Dependency>
11-
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24375.3">
11+
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24414.3">
1212
<Uri>https://github.com/dotnet/arcade</Uri>
13-
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
13+
<Sha>4d15f8d1f2d61f6513b70f0bcd4bd3c1828a3a68</Sha>
1414
</Dependency>
15-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24375.3">
15+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24414.3">
1616
<Uri>https://github.com/dotnet/arcade</Uri>
17-
<Sha>3e18bd4f62388b829d0b9dcd1ee131431674aa5f</Sha>
17+
<Sha>4d15f8d1f2d61f6513b70f0bcd4bd3c1828a3a68</Sha>
1818
</Dependency>
1919
</ToolsetDependencies>
2020
</Dependencies>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</PropertyGroup>
1919
<!-- Arcade dependencies -->
2020
<PropertyGroup>
21-
<MicrosoftDotNetGenFacadesPackageVersion>9.0.0-beta.24375.3</MicrosoftDotNetGenFacadesPackageVersion>
22-
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.24375.3</MicrosoftDotNetXUnitExtensionsPackageVersion>
21+
<MicrosoftDotNetGenFacadesPackageVersion>9.0.0-beta.24414.3</MicrosoftDotNetGenFacadesPackageVersion>
22+
<MicrosoftDotNetXUnitExtensionsPackageVersion>9.0.0-beta.24414.3</MicrosoftDotNetXUnitExtensionsPackageVersion>
2323
</PropertyGroup>
2424
<!-- CoreFx dependencies -->
2525
<PropertyGroup>

eng/common/darc-init.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param (
22
$darcVersion = $null,
3-
$versionEndpoint = 'https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16',
3+
$versionEndpoint = 'https://maestro.dot.net/api/assets/darc-version?api-version=2020-02-20',
44
$verbosity = 'minimal',
55
$toolpath = $null
66
)

eng/common/darc-init.sh

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

33
source="${BASH_SOURCE[0]}"
44
darcVersion=''
5-
versionEndpoint='https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16'
5+
versionEndpoint='https://maestro.dot.net/api/assets/darc-version?api-version=2020-02-20'
66
verbosity='minimal'
77

88
while [[ $# > 0 ]]; do

eng/common/native/init-compiler.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ case "$compiler" in
2121
majorVersion="${version%%.*}"
2222

2323
# LLVM based on v18 released in early 2024, with two releases per year
24-
maxVersion="$((18 + ((($(date +%Y) - 2024) * 12 + $(date +%m) - 3) / 6)))"
24+
maxVersion="$((18 + ((($(date +%Y) - 2024) * 12 + $(date +%-m) - 3) / 6)))"
2525
compiler=clang
2626
;;
2727

@@ -31,7 +31,7 @@ case "$compiler" in
3131
majorVersion="${version%%.*}"
3232

3333
# GCC based on v14 released in early 2024, with one release per year
34-
maxVersion="$((14 + ((($(date +%Y) - 2024) * 12 + $(date +%m) - 3) / 12)))"
34+
maxVersion="$((14 + ((($(date +%Y) - 2024) * 12 + $(date +%-m) - 3) / 12)))"
3535
compiler=gcc
3636
;;
3737
esac

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": "9.0.100-preview.5.24307.3"
1515
},
1616
"msbuild-sdks": {
17-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24375.3",
17+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24414.3",
1818
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23409.5"
1919
}
2020
}

0 commit comments

Comments
 (0)