Skip to content

Commit 2ae313e

Browse files
committed
Updated version number, Nuget package configuration and 3rd-party license.
1 parent 829ccce commit 2ae313e

File tree

5 files changed

+13
-35
lines changed

5 files changed

+13
-35
lines changed

.nuget/ILGPU.nuspec

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>ILGPU</id>
5-
<version>0.8.0</version>
5+
<version>0.8.1-beta1</version>
66
<title>ILGPU</title>
77
<owners>Marcel Koester</owners>
88
<authors>Marcel Koester</authors>
@@ -30,8 +30,6 @@
3030
<file src="..\LICENSE.txt" target="" />
3131
<file src="..\LICENSE-3RD-PARTY.txt" target="" />
3232

33-
<file src="ILGPU.targets" target="build\ILGPU.targets" />
34-
3533
<file src="..\Bin\Release\netstandard2.1\ILGPU.dll" target="lib\netstandard2.1\ILGPU.dll" />
3634
<file src="..\Bin\Release\netstandard2.1\ILGPU.xml" target="lib\netstandard2.1\ILGPU.xml" />
3735
<file src="..\Bin\Release\netstandard2.1\ILGPU.pdb" target="lib\netstandard2.1\ILGPU.pdb" />

.nuget/ILGPU.targets

-29
This file was deleted.

LICENSE-3RD-PARTY.txt

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Copyrights and Licenses for third party dependencies of ILGPU.
33
ILGPU Dependencies:
44
- System.Collections.Immutable
55
(https://www.nuget.org/packages/System.Collections.Immutable)
6+
- System.Memory
7+
(https://www.nuget.org/packages/System.Memory)
68
- System.Reflection.Metadata
79
(https://www.nuget.org/packages/System.Reflection.Metadata)
810
- System.Runtime.CompilerServices.Unsafe
@@ -16,6 +18,13 @@ ILGPU Dependencies:
1618
System.Collections.Immutable license can be found via:
1719
http://go.microsoft.com/fwlink/?LinkId=329770
1820

21+
********************************************************************************
22+
ILGPU Compiler Dependency: System.Memory
23+
********************************************************************************
24+
25+
System.Memory license can be found via:
26+
http://go.microsoft.com/fwlink/?LinkId=329770
27+
1928
********************************************************************************
2029
ILGPU Compiler Dependency: System.Reflection.Metadata
2130
********************************************************************************

Src/ILGPU.sln

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Nuget", "Nuget", "{CF6CEEF5-1BFF-4A2B-8506-D62DE6D410EE}"
99
ProjectSection(SolutionItems) = preProject
1010
..\.nuget\ILGPU.nuspec = ..\.nuget\ILGPU.nuspec
11-
..\.nuget\ILGPU.targets = ..\.nuget\ILGPU.targets
1211
EndProjectSection
1312
EndProject
1413
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILGPU.Tests", "ILGPU.Tests\ILGPU.Tests.csproj", "{FD2580D6-C051-4F6B-8208-EE0EAAFD6392}"

Src/ILGPU/ILGPU.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212
<Copyright>Copyright © 2016-2020 Marcel Koester</Copyright>
1313
<Company />
1414
<Authors>Marcel Koester</Authors>
15-
<Version>0.8.0</Version>
15+
<Version>0.8.1</Version>
1616
<Description>ILGPU Just-In-Time Compiler</Description>
1717
<PackageProjectUrl>www.ilgpu.net</PackageProjectUrl>
1818
<NeutralLanguage>en-US</NeutralLanguage>
1919
<!-- CAUTION: ILGPU supports a limited subset only - due to the .Net 4.7 backwards compatibility -->
2020
<LangVersion>8.0</LangVersion>
21-
<AssemblyVersion>0.8.0.0</AssemblyVersion>
21+
<AssemblyVersion>0.8.1.0</AssemblyVersion>
22+
<FileVersion>0.8.1.0</FileVersion>
2223
</PropertyGroup>
2324

2425
<PropertyGroup Condition="'$(TargetFramework)'!='net47'">

0 commit comments

Comments
 (0)