diff --git a/appveyor.yml b/appveyor.yml index e01c66621..d0d654a1d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 5.7.0.{build} +version: 5.7.1.{build} branches: only: - develop @@ -6,15 +6,15 @@ configuration: release platform: Any CPU init: - ps: >- - Update-AppveyorBuild -Version "5.7.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "5.7.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "5.7.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Write-Host "5.7.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 5.7.0.{build} - file_version: 5.7.0.{build} + assembly_version: 5.7.1.{build} + file_version: 5.7.1.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index c78a70f28..531336fcb 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -1,5 +1,16 @@ # Features / Fixed issues - EPPlus 5 +## Version 5.7.1 +### Fixed issues +* Using a number format with AM/PM resulted in an output of AM or PM only. +* Validation of data validations throw an exception when Formula1 is empty even if AllowBlank was set to true +* Table behavior is incorrect when inserting rows if another table is below. +* Table calculated columns don't update the formula for added rows. +* Added cache for texts/fonts in AutoFitColumns, thanks to Simendsjo +* Setting Range.IsRichText on ranges with more than one cell did not work correctly. +* Loading packages with external references that didn't have a valid Uri failed on load. +* A value of null in a cell returned "0" in the Text property. + ## Version 5.7.0 ### Features * External links diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 5f67e891d..ca49c5288 100644 --- a/src/EPPlus/EPPlus.csproj +++ b/src/EPPlus/EPPlus.csproj @@ -2,9 +2,9 @@ net5.0;netstandard2.1;netstandard2.0;net45;net40;net35 - 5.7.0.0 - 5.7.0.0 - 5.7.0 + 5.7.1.0 + 5.7.1.0 + 5.7.1 true https://epplussoftware.com EPPlus Software AB @@ -18,13 +18,16 @@ Excel ooxml EPPlus Software AB - EPPlus 5.7.0 + EPPlus 5.7.1 IMPORTAT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license. Commercial licenses can be purchased from https://epplussoftware.com This applies to EPPlus version 5 and later. Previous versions are still licensed LGPL. + ## Version 5.7.1 + * Bug fixes. + ## Version 5.7.0 * External links * Enhanced sorting @@ -35,7 +38,7 @@ * Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues ## Version 5.6.4 - * Bug fixes. + * Bug fixes. ## Version 5.6.3 * Bug fixes. @@ -172,8 +175,9 @@ A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html Version history - 5.7.0 20210617 Exteral links. Better sorting support. Pivot table ShowAs See https://epplussoftware.com/Developers/MinorFeaturesAndIssues - 5.6.4 20210512 Minor bug fixes. + 5.7.1 20210706 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 5.7.0 20210617 External links. Better sorting support. Pivot table ShowAs + 5.6.4 20210512 Minor bug fixes. 5.6.3 20210416 Minor bug fixes. 5.6.2 20210407 Minor bug fixes. 5.6.1 20210322 Minor bug fixes.