diff --git a/appveyor7.yml b/appveyor7.yml index 0f2a51fac..66d28273b 100644 --- a/appveyor7.yml +++ b/appveyor7.yml @@ -1,4 +1,4 @@ -version: 7.5.1.{build} +version: 7.5.2.{build} branches: only: - develop7 @@ -6,15 +6,15 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "7.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "7.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Write-Host "7.5.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 7.5.1.{build} - file_version: 7.5.1.{build} + assembly_version: 7.5.2.{build} + file_version: 7.5.2.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 878f5a92a..6d497dbf3 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -1,4 +1,19 @@ # Features / Fixed issues - EPPlus 7 +## Version 7.5.2 +* Pivot tables with blanks could cause the pivot table to become corrupt. +* Fixed error handling in the TEXTJOIN, TEXTSPLIT and CONCAT functions. +* EPPlus throw an Exception when trying to delete the last column in a worksheet. +* ExcelColor.LookupColor() returned an unexpected color code for empty colors. LookupColor() will now returns an empty string for empty colors. +* DimensionByValue throw an System.ArgumentException: 'Column out of range' in some cases. +* When having a column style on a column that spans multiple columns only the first is considered when reading a package. +* XLOOKUP now returns emtpy string instead of #N/A when the third argument is an empty string. +* ToDataTable did no return rich text cells correctly +* ExcelWorksheets.MoveToStart did not always work correctly if IsWorksheets1Based was set. +* Reading boolean properties of data validations saved in LibreOffice was not correctly read. +* Adding a pivot table page field could crash in some cases. +* Linked images crashed on read if the link attribute was empty. +* Fixed "Worksheet position out of range" exception when calculating a formula having IsWorksheets1Based set. + ## Version 7.5.1 * Style set on column/row level did not save on cells with a value and styleId is 0. * Fix for inserting rows after array formulas when referring to worksheets with '#' as part of the worksheet name. diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 893e8a4d1..ae025ca0a 100644 --- a/src/EPPlus/EPPlus.csproj +++ b/src/EPPlus/EPPlus.csproj @@ -1,9 +1,9 @@  net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35 - 7.5.1.0 - 7.5.1.0 - 7.5.1 + 7.5.2.0 + 7.5.2.0 + 7.5.2 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 7.5.1 + EPPlus 7.5.2 IMPORTANT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. @@ -26,9 +26,14 @@ Commercial licenses can be purchased from https://epplussoftware.com This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL. - ## Version 7.5.1 + ## Version 7.5.2 + * Pivot tables could crash + * Reading linked images was failed if a relation attribute existed but did not have a value. * Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues - + + ## Version 7.5.1 + * Minor features and bug fixes. + ## Version 7.5.0 * Added signatures to the EPPlus.dll's and the EPPlus Nuget package. * Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField