Skip to content

Commit

Permalink
Bump major version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wo80 committed Mar 29, 2024
1 parent 6b0fb46 commit ec9493c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CSparse.Tests/CSparse.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
</ItemGroup>

<ItemGroup>
Expand Down
19 changes: 9 additions & 10 deletions CSparse/CSparse.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,26 @@
<Description>CSparse.NET provides numerical methods for sparse LU, Cholesky and QR decomposition of real and complex linear systems.</Description>
<Product>CSparse.NET</Product>
<Company />
<Copyright>Copyright Christian Woltering © 2012-2023</Copyright>
<Copyright>Copyright Christian Woltering © 2012-2024</Copyright>
<Authors>Christian Woltering</Authors>
<AssemblyVersion>3.8.1.0</AssemblyVersion>
<FileVersion>3.8.1.0</FileVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
<PackageTags>math sparse matrix lu cholesky qr decomposition factorization </PackageTags>
<Version>3.8.1</Version>
<Version>4.0.0</Version>
<AssemblyName>CSparse</AssemblyName>
<RootNamespace>CSparse</RootNamespace>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/wo80/CSparse.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/wo80/CSparse.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>
Changes in version 3.8.1:
The major version change is due to the removal of obsolete methods in the Converter class. Visibility of that class was changed from public to internal. In case those obsolete methods were still used, please switch to the static conversion methods provided by the SparseMatrix class.

* Add overloads for permutation Invert() and IsValid() methods taking the permutation length as argument.
Other changes in version 4.0.0:

Changes in version 3.8.0:

* Add overloads for the factorization Solve() methods taking Span&lt;T&gt; as argument. Note that this introduces a dependency on System.Memory for the netstandard2.0 assembly.
</PackageReleaseNotes>
* Addition of helper method Helper.ValidateStorage(...) to validate the structure of a sparse matrix.
* Improvements to documentation.
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit ec9493c

Please sign in to comment.