From 2f3a03cc0a992209fe282f851a644d726c5dbe1f Mon Sep 17 00:00:00 2001 From: JanKallman Date: Fri, 22 Dec 2023 08:50:59 +0100 Subject: [PATCH] EPPlus version 7.0.5 --- appveyor7.yml | 15 +++++---------- docs/articles/fixedissues.md | 7 +++++++ src/EPPlus/EPPlus.csproj | 16 ++++++++++------ 3 files changed, 22 insertions(+), 16 deletions(-) diff --git a/appveyor7.yml b/appveyor7.yml index 7aa792f36..2be88fbd8 100644 --- a/appveyor7.yml +++ b/appveyor7.yml @@ -1,5 +1,4 @@ - -version: 7.0.4.{build} +version: 7.0.5.{build} branches: only: - develop7 @@ -7,19 +6,15 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" -install: -- ps: | - Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1" - & "$env:temp\dotnet-install.ps1" -Architecture x64 -Version '8.0.100' -InstallDir "$env:ProgramFiles\dotnet" + Write-Host "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 7.0.4.{build} - file_version: 7.0.4.{build} + assembly_version: 7.0.5.{build} + file_version: 7.0.5.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 8a4ddb852..960ba11b9 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -1,4 +1,11 @@ # Features / Fixed issues - EPPlus 7 +## Version 7.0.5 +### Fixed issues +* Calculating formulas with expressions that had double cell negations, returned an incorrect result. +* Calculating a formula that had a negation of an empty cell returned a #VALUE! error. +* Pivot table fields with a specified subtotal function sometimes caused the workbook to become corrupt. +* Deleting a worksheet with hyperlinks that referes to an intenal address caused an exception. + ## Version 7.0.4 ### Minor Features * Added follow dependency-chain option which allows calculating the given cells without calculating dependent cells diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 5cbadc395..3e11f9898 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.0.4.0 - 7.0.4.0 - 7.0.4 + 7.0.5.0 + 7.0.5.0 + 7.0.5 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 7.0.4 + EPPlus 7.0.5 IMPORTANT NOTICE! From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license. @@ -26,9 +26,12 @@ 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.0.4 + ## Version 7.0.5 * Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues + ## Version 7.0.4 + * Bug fixes + ## Version 7.0.3 * Bug fixes @@ -357,7 +360,8 @@ A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html Version history - 7.0.4 20231215 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 7.0.5 20231222 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 7.0.4 20231215 Minor bug fixes. 7.0.3 20231205 Minor bug fixes. 7.0.2 20231123 Minor bug fixes. 7.0.1 20231109 Minor bug fixes.