Skip to content

Commit

Permalink
release v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Oceania2018 committed Dec 5, 2018
1 parent 0817001 commit 4d5ce4e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 20 deletions.
26 changes: 10 additions & 16 deletions src/NumSharp.Core/NumSharp.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,27 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Haiping Chen, Christian Kahr, Darren Schroeder</Authors>
<Authors>Haiping Chen, Christian Kahr</Authors>
<Description>NumPy is the fundamental package for scientific computing with dot NET. NumSharp 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>
<PackageProjectUrl>https://github.com/Oceania2018/NumSharp</PackageProjectUrl>
<Copyright>Apache 2.0</Copyright>
<RepositoryUrl>https://github.com/Oceania2018/NumSharp</RepositoryUrl>
<PackageReleaseNotes>Performance improved for np.arange.
Added axis support for np.amin and np.amax.
Separate PowerShell extension project.
Added IronPython extension project.
Remove all dynamic variable.
Added benchmark project.
Remove all LINQ syntax due to low performance.
Added Span for memory access.
Added np.sqrt.
Added np.normal
Implemented IEnumerable interface for NDArray.
Updated online documents.</PackageReleaseNotes>
<AssemblyVersion>0.4.0.0</AssemblyVersion>
<FileVersion>0.4.0.0</FileVersion>
<PackageReleaseNotes>Abstract storage and shape from NDArray.
Support dynamic dtype, make generic NDArray inherit from NDArray.
Add string[] and bool[] storage.
Updated online documents.
Add np.ravel, np.transpose.</PackageReleaseNotes>
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<FileVersion>0.5.0.0</FileVersion>
<RepositoryType>git</RepositoryType>
<PackageTags>NumPy, NumSharp, MachineLearning, Math, Scientific, Numeric</PackageTags>
<Version>0.4.0</Version>
<Version>0.5.0</Version>
<PackageLicenseUrl>https://raw.githubusercontent.com/Oceania2018/NumSharp/master/LICENSE</PackageLicenseUrl>
<LangVersion>latest</LangVersion>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
<PackageId>NumSharp</PackageId>
<Product>NumSharp</Product>
<Company>SciSharp.org</Company>
</PropertyGroup>

<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))">
Expand Down
3 changes: 2 additions & 1 deletion src/NumSharp.PowerShell/NumSharp.PowerShell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.0.0">
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.1.1">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NumSharp" Version="0.5.0" />
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions src/NumSharp.Python/NumSharp.Python.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<ItemGroup>
<PackageReference Include="NumSharp" Version="0.5.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>

Expand Down
3 changes: 2 additions & 1 deletion test/NumSharp.Benchmark/NumSharp.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.11.2" />
<PackageReference Include="BenchmarkDotNet" Version="0.11.3" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="NumSharp" Version="0.5.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>

Expand Down
5 changes: 3 additions & 2 deletions test/NumSharp.UnitTest/NumSharp.UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="NumSharp" Version="0.5.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>

Expand All @@ -57,8 +58,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 4d5ce4e

Please sign in to comment.