Skip to content

Commit ec9493c

Browse files
committed
Bump major version to 4.0.0
1 parent 6b0fb46 commit ec9493c

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

CSparse.Tests/CSparse.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
</ItemGroup>
4242

4343
<ItemGroup>
44-
<PackageReference Include="NUnit" Version="4.0.1" />
44+
<PackageReference Include="NUnit" Version="4.1.0" />
4545
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
46-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
46+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
4747
</ItemGroup>
4848

4949
<ItemGroup>

CSparse/CSparse.csproj

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,26 @@
99
<Description>CSparse.NET provides numerical methods for sparse LU, Cholesky and QR decomposition of real and complex linear systems.</Description>
1010
<Product>CSparse.NET</Product>
1111
<Company />
12-
<Copyright>Copyright Christian Woltering © 2012-2023</Copyright>
12+
<Copyright>Copyright Christian Woltering © 2012-2024</Copyright>
1313
<Authors>Christian Woltering</Authors>
14-
<AssemblyVersion>3.8.1.0</AssemblyVersion>
15-
<FileVersion>3.8.1.0</FileVersion>
14+
<AssemblyVersion>4.0.0.0</AssemblyVersion>
15+
<FileVersion>4.0.0.0</FileVersion>
1616
<PackageTags>math sparse matrix lu cholesky qr decomposition factorization </PackageTags>
17-
<Version>3.8.1</Version>
17+
<Version>4.0.0</Version>
1818
<AssemblyName>CSparse</AssemblyName>
1919
<RootNamespace>CSparse</RootNamespace>
2020
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
2121
<PackageProjectUrl>https://github.com/wo80/CSparse.NET</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/wo80/CSparse.NET</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
2424
<PackageReleaseNotes>
25-
Changes in version 3.8.1:
25+
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.
2626

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

29-
Changes in version 3.8.0:
30-
31-
* 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.
32-
</PackageReleaseNotes>
29+
* Addition of helper method Helper.ValidateStorage(...) to validate the structure of a sparse matrix.
30+
* Improvements to documentation.
31+
</PackageReleaseNotes>
3332
</PropertyGroup>
3433

3534
<ItemGroup>

0 commit comments

Comments
 (0)