diff --git a/appveyor.yml b/appveyor.yml index efa321787..192c25793 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 6.2.3.{build} +version: 6.2.4.{build} branches: only: - develop @@ -6,16 +6,16 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "6.2.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "6.2.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "6.2.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Write-Host "6.2.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 6.2.3.{build} - file_version: 6.2.3.{build} + assembly_version: 6.2.4.{build} + file_version: 6.2.4.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 676cc34fd..6147a2053 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -1,4 +1,15 @@ # Features / Fixed issues - EPPlus 6 +## Version 6.2.4 +### Minor Features +* Added IRangeDataValidation. ClearDataValidation to clear data validations from a range. +### Fixed issues +* Having a table data source set to a defined name, and then insert rows into the range, caused the table source to be inverted into a range without inserting the rows. +* An error occured when setting the Shape.Text in some cases."Name cannot begin with the ' ' character, hexadecimal value 0x20, due to invalid xml. +* Scientific notation numbers were not being recognized in the calculation when there were leading or trailing whitespaces. +* Formulas update for Data Validation and Conditional Formatting sometimes updated the addresses wrong when inserting and deleting. +* The worksheet xml got corrupt in rare cases, when having extLst items. +* A pivot table's SourceRange property was not read on load. + ## Version 6.2.3 ### Fixed issues * Setting sparklineGroups.MaxAxisType to eSparklineAxisMinMax.Group did not work. diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 800b4aa26..66ca76887 100644 --- a/src/EPPlus/EPPlus.csproj +++ b/src/EPPlus/EPPlus.csproj @@ -1,9 +1,9 @@  net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35 - 6.2.3.0 - 6.2.3.0 - 6.2.3 + 6.2.4.0 + 6.2.4.0 + 6.2.4 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 6.2.3 + EPPlus 6.2.4 IMPORTANT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. @@ -26,12 +26,15 @@ Commercial licenses can be purchased from https://epplussoftware.com This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL. - ## Version 6.2.3 + ## Version 6.2.4 * Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues - ## Version 6.2.2 + ## Version 6.2.3 * Bug fixes. + ## Version 6.2.2 + * Bug fixes. + ## Version 6.2.1 * Bug fixes. @@ -301,8 +304,9 @@ A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html Version history - 6.2.3 20230502 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues - 6.2.2 20230417 Minor bug fixes. + 6.2.4 20230515 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 6.2.3 20230502 Minor bug fixes. + 6.2.2 20230417 Minor bug fixes. 6.2.1 20230406 Minor bug fixes. 6.2.0 20230324 Performance update to data validation. Minor bug fixes. 6.1.3 20230224 Minor bug fixes.