diff --git a/appveyor7.yml b/appveyor7.yml index 179e7fb4a..1eaea96e0 100644 --- a/appveyor7.yml +++ b/appveyor7.yml @@ -1,4 +1,4 @@ -version: 7.1.2.{build} +version: 7.1.3.{build} branches: only: - develop7 @@ -6,15 +6,15 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "7.1.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Write-Host "7.1.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 7.1.2.{build} - file_version: 7.1.2.{build} + assembly_version: 7.1.3.{build} + file_version: 7.1.3.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 56afb590e..222d68cdc 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -1,8 +1,16 @@ - # Features / Fixed issues - EPPlus 7 ## Version 7.1.3 ### Fixed issues -* Dxf styles on tables got corrupt if a style contained an alignment and and border element. +* Dxf styles on tables got corrupt if a style contained an alignment and border element. +* When calculating formulas, you could get a CirculareReferenceException, if a formula referenced a non-existing worksheet. +* Conditional formatting’s with the pivot flag set was incorrectly handled if they had no worksheet address set. +* Clearing data validations on cells, could cause an exception when trying to add new data validations to these cells. +* Conditional formatting icon sets now handles all operators and types appropriately ... +* ExcelRange.Text returned an invalid formatting on formats with "?" in some cases. +* Name indexer on group drawings did not work. +* Data validation lists did not handle the `showDropDown` attribute. +* Loading a workbook with rich text elements with no style element could hang. +* The rich text `Text` property was not decode for restricted characters. ## Version 7.1.2 ### Fixed issues diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index b415bf57c..89f08478f 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.1.1.0 - 7.1.1.0 - 7.1.1 + 7.1.3.0 + 7.1.3.0 + 7.1.3 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 7.1.2 + EPPlus 7.1.3 IMPORTANT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. @@ -26,6 +26,9 @@ 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.1.3 + * Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues + ## Version 7.1.2 * Bug fixes @@ -36,7 +39,7 @@ * The html export now supports most conditional formattings. * Updated performance for rich text handling on ranges. * Improvments in sort order and cell formatting of the ExcelRangeBase.LoadFromCollection method - * Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues + * Bug fixes ## Version 7.0.10 * Bug fixes @@ -387,7 +390,8 @@ A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html Version history - 7.1.2 20240423 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues. + 7.1.3 20240528 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues. + 7.1.2 20240423 Minor bug fixes. 7.1.1 20240408 Minor bug fixes. 7.1.0 20240328 Html export of Conditional formatting, Performance RichText, LoadFromCollection Enhancements. 7.0.10 20240311 Minor bug fixes.