Skip to content

Commit 7152857

Browse files
committed
Updating version to v20.1.2
1 parent fb8f621 commit 7152857

File tree

177 files changed

+190
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+190
-220
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
./artifacts/pkg/**/*
4949
./artifacts/tst/**/*
5050
if-no-files-found: error
51-
macos-x64:
51+
macos-arm64:
5252
runs-on: ${{ matrix.os }}-latest
5353
strategy:
5454
matrix:
55-
architecture: [ x64 ]
55+
architecture: [ arm64 ]
5656
configuration: [ debug, release ]
5757
os: [ macos ]
5858
steps:
@@ -153,7 +153,7 @@ jobs:
153153
publish-nightlies-azure:
154154
runs-on: ubuntu-latest
155155
if: ${{ github.event_name == 'push' }}
156-
needs: [ windows-x64, linux-x64, macos-x64, sign-nuget-preview, sign-nuget-release ]
156+
needs: [ windows-x64, linux-x64, macos-arm64, sign-nuget-preview, sign-nuget-release ]
157157
steps:
158158
- uses: actions/download-artifact@v4
159159
with:
@@ -169,7 +169,7 @@ jobs:
169169
publish-nightlies-github:
170170
runs-on: ubuntu-latest
171171
if: false
172-
needs: [ windows-x64, linux-x64, macos-x64, sign-nuget-preview, sign-nuget-release ]
172+
needs: [ windows-x64, linux-x64, macos-arm64, sign-nuget-preview, sign-nuget-release ]
173173
steps:
174174
- uses: actions/download-artifact@v4
175175
with:

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<PackageValidationBaselineVersion>16.0.0</PackageValidationBaselineVersion>
4848
<Product>LLVMSharp</Product>
4949
<RootNamespace>LLVMSharp</RootNamespace>
50-
<VersionPrefix>18.1.0</VersionPrefix>
50+
<VersionPrefix>20.1.2</VersionPrefix>
5151
<VersionSuffix Condition="'$(EXCLUDE_SUFFIX_FROM_VERSION)' != 'true'">rc1</VersionSuffix>
5252
<VersionSuffix Condition="'$(GITHUB_EVENT_NAME)' == 'pull_request'">pr</VersionSuffix>
5353
</PropertyGroup>

Directory.Packages.props

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

1313
<!-- Package versions for package references across all projects -->
1414
<ItemGroup>
15-
<PackageVersion Include="libLLVM" Version="18.1.3.1" />
15+
<PackageVersion Include="libLLVM" Version="20.1.2" />
1616
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1717
<PackageVersion Include="NUnit" Version="4.1.0" />
1818
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />

LLVMSharp.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "libLLVM.runtime.linux-arm64
7171
packages\libLLVM\libLLVM.runtime.linux-arm64\libLLVM.runtime.linux-arm64.nuspec = packages\libLLVM\libLLVM.runtime.linux-arm64\libLLVM.runtime.linux-arm64.nuspec
7272
EndProjectSection
7373
EndProject
74-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "libLLVM.runtime.osx-x64", "libLLVM.runtime.osx-x64", "{D4550E5E-9485-4480-B2B6-9503EEC935BF}"
75-
ProjectSection(SolutionItems) = preProject
76-
packages\libLLVM\libLLVM.runtime.osx-x64\libLLVM.runtime.osx-x64.nuspec = packages\libLLVM\libLLVM.runtime.osx-x64\libLLVM.runtime.osx-x64.nuspec
77-
EndProjectSection
78-
EndProject
7974
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "libLLVM.runtime.win-x64", "libLLVM.runtime.win-x64", "{E785DDD0-B9CD-4412-8A3C-4E65C601168C}"
8075
ProjectSection(SolutionItems) = preProject
8176
packages\libLLVM\libLLVM.runtime.win-x64\libLLVM.runtime.win-x64.nuspec = packages\libLLVM\libLLVM.runtime.win-x64\libLLVM.runtime.win-x64.nuspec
@@ -133,7 +128,6 @@ Global
133128
{9D46FF1C-E09F-4063-A97D-C09F26310B67} = {CD611531-75EA-4328-8C25-8D0496E61EC2}
134129
{568A07AC-AF60-4A3E-ABD3-2B51D9DD4EBF} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
135130
{16539CB8-8AC7-4AD0-9D54-8EE615B2FCF3} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
136-
{D4550E5E-9485-4480-B2B6-9503EEC935BF} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
137131
{E785DDD0-B9CD-4412-8A3C-4E65C601168C} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
138132
{19DB05E9-59B6-45E9-B47D-62913F7DF9A8} = {9D46FF1C-E09F-4063-A97D-C09F26310B67}
139133
{CEA0F0C9-DF25-446B-8F55-FB629BD1D3E6} = {62B5C536-C224-4EE1-972F-05F732B5980B}

packages/libLLVM/libLLVM.runtime.linux-arm64/libLLVM.runtime.linux-arm64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libLLVM.runtime.linux-arm64</id>
5-
<version>18.1.3</version>
5+
<version>20.1.2</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
1111
<description>linux arm64 native library for libLLVM.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-20.1.2" />
1414
</metadata>
1515
<files>
1616
<file src="..\libLLVM\LICENSE.TXT" target="LICENSE.TXT" />

packages/libLLVM/libLLVM.runtime.linux-x64/libLLVM.runtime.linux-x64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libLLVM.runtime.linux-x64</id>
5-
<version>18.1.3</version>
5+
<version>20.1.2</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
1111
<description>linux x64 native library for libLLVM.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-20.1.2" />
1414
</metadata>
1515
<files>
1616
<file src="..\libLLVM\LICENSE.TXT" target="LICENSE.TXT" />

packages/libLLVM/libLLVM.runtime.osx-arm64/libLLVM.runtime.osx-arm64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libLLVM.runtime.osx-arm64</id>
5-
<version>18.1.3</version>
5+
<version>20.1.2</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
1111
<description>osx arm64 native library for libLLVM.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-20.1.2" />
1414
</metadata>
1515
<files>
1616
<file src="..\libLLVM\LICENSE.TXT" target="LICENSE.TXT" />

packages/libLLVM/libLLVM.runtime.osx-x64/libLLVM.runtime.osx-x64.nuspec

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/libLLVM/libLLVM.runtime.win-arm64/libLLVM.runtime.win-arm64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libLLVM.runtime.win-arm64</id>
5-
<version>18.1.3.1</version>
5+
<version>20.1.2</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
1111
<description>win arm64 native library for libLLVM.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-20.1.2" />
1414
</metadata>
1515
<files>
1616
<file src="..\libLLVM\LICENSE.TXT" target="LICENSE.TXT" />

packages/libLLVM/libLLVM.runtime.win-x64/libLLVM.runtime.win-x64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata minClientVersion="2.12">
44
<id>libLLVM.runtime.win-x64</id>
5-
<version>18.1.3.1</version>
5+
<version>20.1.2</version>
66
<authors>.NET Foundation and Contributors</authors>
77
<owners>.NET Foundation and Contributors</owners>
88
<requireLicenseAcceptance>true</requireLicenseAcceptance>
99
<license type="expression">Apache-2.0 WITH LLVM-exception</license>
1010
<projectUrl>https://github.com/dotnet/llvmsharp</projectUrl>
1111
<description>win x64 native library for libLLVM.</description>
1212
<copyright>Copyright © LLVM Project</copyright>
13-
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-18.1.3" />
13+
<repository type="git" url="https://github.com/llvm/llvm-project" branch="llvmorg-20.1.2" />
1414
</metadata>
1515
<files>
1616
<file src="..\libLLVM\LICENSE.TXT" target="LICENSE.TXT" />

0 commit comments

Comments
 (0)