diff --git a/appveyor7.yml b/appveyor7.yml index 3b92630c0..7aa792f36 100644 --- a/appveyor7.yml +++ b/appveyor7.yml @@ -1,4 +1,5 @@ -version: 7.0.3.{build} + +version: 7.0.4.{build} branches: only: - develop7 @@ -6,9 +7,9 @@ configuration: release image: Visual Studio 2022 init: - ps: >- - Update-AppveyorBuild -Version "7.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" + Update-AppveyorBuild -Version "7.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch" - Write-Host "7.0.3.$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" @@ -17,8 +18,8 @@ dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' - assembly_version: 7.0.3.{build} - file_version: 7.0.3.{build} + assembly_version: 7.0.4.{build} + file_version: 7.0.4.{build} nuget: project_feed: true before_build: diff --git a/docs/articles/fixedissues.md b/docs/articles/fixedissues.md index 5db64421a..8a4ddb852 100644 --- a/docs/articles/fixedissues.md +++ b/docs/articles/fixedissues.md @@ -2,9 +2,13 @@ ## Version 7.0.4 ### Minor Features * Added follow dependency-chain option which allows calculating the given cells without calculating dependent cells -* + ### Fixed issues -* Deleting pivot tables sometimes did not clear their pivotcaches. +* Deleting pivot tables sometimes did not clear their pivot caches. +* The formula tokenizer did not handle single/double quotes and encoding correctly in table addresses. +* The JSON export did not encode column header cells and comment texts. +* Worksheet Copy did not copy images with hyperlinks correctly +* ExcelRangeBase.FormulaR1C1 translation did return a correct value when having a minus operator in some cases. ## Version 7.0.3 ### Minor Features diff --git a/src/EPPlus/EPPlus.csproj b/src/EPPlus/EPPlus.csproj index 30c9744fc..5cbadc395 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.3.0 - 7.0.3.0 - 7.0.3 + 7.0.4.0 + 7.0.4.0 + 7.0.4 true https://epplussoftware.com EPPlus Software AB @@ -18,7 +18,7 @@ readme.md EPPlus Software AB - EPPlus 7.0.3 + EPPlus 7.0.4 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.3 + ## Version 7.0.4 * Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues + ## Version 7.0.3 + * Bug fixes + ## Version 7.0.2 * Bug fixes @@ -354,7 +357,8 @@ A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html Version history - 7.0.3 20231205 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 7.0.4 20231215 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues + 7.0.3 20231205 Minor bug fixes. 7.0.2 20231123 Minor bug fixes. 7.0.1 20231109 Minor bug fixes. 7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7