Skip to content

Commit 1bd9d45

Browse files
committed
EPPlus version 8.0.4
1 parent 934a560 commit 1bd9d45

3 files changed

Lines changed: 22 additions & 9 deletions

File tree

appveyor8.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 8.0.3.{build}
1+
version: 8.0.4.{build}
22
branches:
33
only:
44
- develop8
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "8.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "8.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "8.0.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "8.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 8.0.3.{build}
17-
file_version: 8.0.3.{build}
16+
assembly_version: 8.0.4.{build}
17+
file_version: 8.0.4.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.0.4
3+
* SUMIFS, AVERAGEIFS and COUNTIFS sometimes miscalculate due to returning the incorrect addresses to the dependency chain.
4+
* Range.Sort did not sort update formula addresses in some cases.
5+
* Fixes array support for the SUBSTITUTE, SUMIFS, AVERAGEIFS and COUNTIFS functions.
6+
* Incorrect handing of meta data strings caused a corrupt workbook in some situations.
7+
* License key validation did not work in Blazor WASM.
8+
* The ExcelPicture.Image.Bounds was not set when loading drawings.
9+
* Pivot cache fields containing error values only, caused a corrupt workbook.
10+
* Pivot table date and number grouping can now handle empty cells.
11+
* Pivot table caches did not always reflect renamed/deleted fields in a source range when refreshing.
12+
* Concatenating two arrays or results of array formulas with the "&" operator sometimes yielded unexpected results.
13+
* A default options variable for RecyclableMemoryStream was initiated even when UseRecyclableMemory was set to false.
14+
215
## Version 8.0.3
316
* Added custom number formats where the formatId is not a built-in format.
417
* SUMIFS and AVERAGEIFS sometimes miscalculated with multiple arguments.

src/EPPlus/EPPlus.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net9.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.0.3.0</AssemblyVersion>
5-
<FileVersion>8.0.3.0</FileVersion>
6-
<Version>8.0.3</Version>
4+
<AssemblyVersion>8.0.4.0</AssemblyVersion>
5+
<FileVersion>8.0.4.0</FileVersion>
6+
<Version>8.0.4</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,7 +18,7 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.0.3
21+
EPPlus 8.0.4
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.

0 commit comments

Comments
 (0)