|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <TargetFrameworks>net8.0;net9.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks> |
4 | | - <AssemblyVersion>8.2.1.0</AssemblyVersion> |
5 | | - <FileVersion>8.2.1.0</FileVersion> |
6 | | - <Version>8.2.1</Version> |
| 4 | + <AssemblyVersion>8.3.0.0</AssemblyVersion> |
| 5 | + <FileVersion>8.3.0.0</FileVersion> |
| 6 | + <Version>8.3.0</Version> |
7 | 7 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
8 | 8 | <PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl> |
9 | 9 | <Authors>EPPlus Software AB</Authors> |
|
18 | 18 | <PackageReadmeFile>readme.md</PackageReadmeFile> |
19 | 19 | <Copyright>EPPlus Software AB</Copyright> |
20 | 20 | <PackageReleaseNotes> |
21 | | - EPPlus 8.2.1 |
| 21 | + EPPlus 8.3.0 |
22 | 22 |
|
23 | 23 | IMPORTANT NOTICE! |
24 | 24 | From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. |
25 | 25 | EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license. |
26 | 26 | Commercial licenses can be purchased from https://epplussoftware.com |
27 | 27 | This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL. |
28 | 28 |
|
| 29 | + ## Version 8.3.0 |
| 30 | + * Support for adding, updating and removing external connections and query tables. See https://github.com/EPPlusSoftware/EPPlus/wiki/External-Connections-and-Query-Tables |
| 31 | + * Support for adding pivot tables with external connections as data source. |
| 32 | + * Added three new functions |
| 33 | + * Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues |
| 34 | + |
29 | 35 | ## Version 8.2.1 |
30 | 36 | * Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues |
31 | 37 |
|
|
40 | 46 | * BYCOL |
41 | 47 | * ISOMITTED |
42 | 48 | * Support for defining lambda functions via defined names. |
43 | | - * Minor bug fixes. |
| 49 | + * Minor bug fixes. |
44 | 50 |
|
45 | 51 | ## Version 8.1.1 |
46 | 52 | * Minor bug fixes. |
|
532 | 538 | A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html |
533 | 539 |
|
534 | 540 | Version history |
535 | | - 8.2.1 20251012 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues |
536 | | - 8.2.0 20250924 LAMBDA functions support. Minor bug fixes. |
| 541 | + 8.3.0 20251120 Connections and query tables support. Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues |
| 542 | + 8.2.1 20251012 Minor bug fixes. |
| 543 | + 8.2.0 20250924 LAMBDA functions support. Minor bug fixes. |
537 | 544 | 8.1.1 20250909 Minor bug fixes. |
538 | 545 | 8.1.0 20250815 Shapes in Charts. Header/footer styling interface. |
539 | 546 | 8.0.8 20250722 Minor bug fixes. |
|
716 | 723 | <PackageReference Include="System.Security.Cryptography.Xml" /> |
717 | 724 | </ItemGroup> |
718 | 725 |
|
719 | | - <ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0'"> |
| 726 | + <ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0' and '$(TargetFramework)' != 'net10.0'"> |
720 | 727 | <PackageReference Include="Microsoft.Extensions.Configuration.Json" /> |
721 | 728 | <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" /> |
722 | 729 | <PackageReference Include="System.Security.Cryptography.Pkcs" /> |
|
733 | 740 | <PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="9.0.3" /> |
734 | 741 | <PackageReference Include="System.Security.Cryptography.Xml" VersionOverride="9.0.3" /> |
735 | 742 | </ItemGroup> |
736 | | - |
| 743 | + <!-- TargetFramework net10.0, remove when GitHub actions and AppVeyor support is available. --> |
| 744 | + <!-- |
| 745 | + <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'"> |
| 746 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="10.0.0" /> |
| 747 | + <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" /> |
| 748 | + <PackageReference Include="System.Security.Cryptography.Pkcs" VersionOverride="10.0.0" /> |
| 749 | + <PackageReference Include="System.ComponentModel.Annotations" /> |
| 750 | + <PackageReference Include="System.Text.Encoding.CodePages" VersionOverride="10.0.0" /> |
| 751 | + <PackageReference Include="System.Security.Cryptography.Xml" VersionOverride="10.0.0" /> |
| 752 | + </ItemGroup> |
| 753 | +--> |
737 | 754 | <ItemGroup> |
738 | 755 | <Compile Remove="LoadFunctions\HeaderReader.cs" /> |
739 | 756 | </ItemGroup> |
|
0 commit comments