Skip to content

Commit ec5770f

Browse files
author
Esther2013
committed
patch v0.6.5
1 parent 58e48ad commit ec5770f

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

src/NumSharp.Core/NumSharp.Core.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,24 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
8-
<Authors>Haiping Chen, Christian Kahr</Authors>
8+
<Authors>Haiping Chen, Christian Kahr, Darren Schroeder</Authors>
99
<PackageOutputPath>../../packages</PackageOutputPath>
1010
<Description>NumSharp is the fundamental package for scientific computing with dot NET. It has implemented the arange, array, max, min, reshape, normalize, unique and random interfaces and so on. More and more interfaces will be added to the library gradually. If you want to use .NET to get started with machine learning, NumSharp will be your best tool library.</Description>
1111
<PackageProjectUrl>https://github.com/SciSharp</PackageProjectUrl>
1212
<Copyright>Apache 2.0</Copyright>
1313
<RepositoryUrl>https://github.com/SciSharp/NumSharp</RepositoryUrl>
14-
<PackageReleaseNotes>Add public static implicit operator NDArray(short d)
15-
Add T randn&lt;T&gt;()</PackageReleaseNotes>
16-
<AssemblyVersion>0.6.4.0</AssemblyVersion>
17-
<FileVersion>0.6.4.0</FileVersion>
14+
<PackageReleaseNotes>Improvements</PackageReleaseNotes>
15+
<AssemblyVersion>0.6.5.0</AssemblyVersion>
16+
<FileVersion>0.6.5.0</FileVersion>
1817
<RepositoryType>git</RepositoryType>
1918
<PackageTags>NumPy, NumSharp, MachineLearning, Math, Scientific, Numeric</PackageTags>
20-
<Version>0.6.4</Version>
19+
<Version>0.6.5</Version>
2120
<PackageLicenseUrl>LICENSE</PackageLicenseUrl>
2221
<LangVersion>latest</LangVersion>
2322
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
2423
<PackageId>NumSharp</PackageId>
2524
<Product>NumSharp</Product>
26-
<Company>SciSharp.org</Company>
25+
<Company>SciSharp STACK</Company>
2726
</PropertyGroup>
2827

2928
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))">
@@ -50,7 +49,7 @@ Add T randn&lt;T&gt;()</PackageReleaseNotes>
5049
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netstandard\d'))">
5150
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
5251
<PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
53-
<PackageReference Include="System.Memory" Version="4.5.1" />
52+
<PackageReference Include="System.Memory" Version="4.5.2" />
5453
</ItemGroup>
5554

5655
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))">

src/NumSharp.PowerShell/NumSharp.PowerShell.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.1.1">
1111
<PrivateAssets>all</PrivateAssets>
1212
</PackageReference>
13-
<PackageReference Include="NumSharp" Version="0.6.1" />
13+
<PackageReference Include="NumSharp" Version="0.6.4" />
1414
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
1515
</ItemGroup>
1616

src/NumSharp.Python/NumSharp.Python.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<ItemGroup>
4-
<PackageReference Include="NumSharp" Version="0.6.1" />
4+
<PackageReference Include="NumSharp" Version="0.6.4" />
55
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
66
</ItemGroup>
77

test/NumSharp.Benchmark/NumSharp.Benchmark.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))">
3535
<PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
3636
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
37-
<PackageReference Include="System.Memory" Version="4.5.1" />
37+
<PackageReference Include="System.Memory" Version="4.5.2" />
3838
</ItemGroup>
3939

4040
<ItemGroup>
4141
<PackageReference Include="BenchmarkDotNet" Version="0.11.3" />
4242
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
43-
<PackageReference Include="NumSharp" Version="0.6.1" />
43+
<PackageReference Include="NumSharp" Version="0.6.4" />
4444
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
4545
</ItemGroup>
4646

test/NumSharp.UnitTest/NumSharp.UnitTest.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<ItemGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))">
3838
<PackageReference Include="Microsoft.Windows.Compatibility" Version="2.0.1" />
3939
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
40-
<PackageReference Include="System.Memory" Version="4.5.1" />
40+
<PackageReference Include="System.Memory" Version="4.5.2" />
4141
</ItemGroup>
4242

4343
<ItemGroup>
@@ -47,9 +47,9 @@
4747
</ItemGroup>
4848

4949
<ItemGroup>
50-
<PackageReference Include="Codecov" Version="1.1.0" />
50+
<PackageReference Include="Codecov" Version="1.1.1" />
5151
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
52-
<PackageReference Include="NumSharp" Version="0.6.1" />
52+
<PackageReference Include="NumSharp" Version="0.6.4" />
5353
<PackageReference Include="OpenCover" Version="4.6.519" />
5454
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
5555
</ItemGroup>

0 commit comments

Comments
 (0)