Skip to content

Commit 10e12a9

Browse files
committed
EPPlus version 5.8.5
1 parent 262db08 commit 10e12a9

File tree

4 files changed

+31
-13
lines changed

4 files changed

+31
-13
lines changed

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 5.8.4.{build}
1+
version: 5.8.5.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
platform: Any CPU
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "5.8.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "5.8.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "5.8.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "5.8.5.$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: 5.8.4.{build}
17-
file_version: 5.8.4.{build}
16+
assembly_version: 5.8.5.{build}
17+
file_version: 5.8.5.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Features / Fixed issues - EPPlus 5
22

3+
## Version 5.8.5
4+
### Minor Features.
5+
* LoadFromCollection with attribute - Added EPPlusTableColumnSortOrder which enables column sort order on class level.
6+
### Fixed issues
7+
* ExcelDrawings.AddBarChart method for pivot charts had the wrong signature.
8+
* Formula calculation adjusted to Excels behaviour regarding when 0 is returned instead of null. Thanks to Colby Hearn for the PR!
9+
* The ExcelRange.Clear method did not remove threaded comments.
10+
* Setting ExcelRange.Value to null only sets the value of the top-left cell.
11+
* Fixed an issue with pivot cache fields having an empty header in the source when updating the cache.
12+
* Pivot field cache containing float and null values caused a corrupt workbook.
13+
* EPPlus could not open workbooks without a normal style.
14+
* SUMIF cannot handle single value, bug fix via Colby Hearn's PR. #570 - Invalid handling of numeric strings in COUNTIF, COUNTIFS and AVERAGEIF
15+
* MINIFS and MAXIFS now return zero when there are no matches.
16+
* Added support for setting LicenseContext using a process level environment variable.
17+
318
## Version 5.8.4
419
### Features
520
* 6 new functions:

src/EPPlus/EPPlus.csproj

+11-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net5.0;netstandard2.1;netstandard2.0;net45;net40;net35</TargetFrameworks>
5-
<AssemblyVersion>5.8.4.0</AssemblyVersion>
6-
<FileVersion>5.8.4.0</FileVersion>
7-
<Version>5.8.4</Version>
5+
<AssemblyVersion>5.8.5.0</AssemblyVersion>
6+
<FileVersion>5.8.5.0</FileVersion>
7+
<Version>5.8.5</Version>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
1010
<Authors>EPPlus Software AB</Authors>
@@ -18,16 +18,19 @@
1818
<PackageTags>Excel ooxml</PackageTags>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 5.8.4
21+
EPPlus 5.8.5
2222
IMPORTANT NOTICE!
2323
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2424
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2525
Commercial licenses can be purchased from https://epplussoftware.com
2626
This applies to EPPlus version 5 and later. Previous versions are still licensed LGPL.
2727

28+
## Version 5.8.5
29+
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
30+
2831
## Version 5.8.4
2932
* 10 new functions
30-
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
33+
* Bug fixes.
3134

3235
## Version 5.8.3
3336
* Bug fixes.
@@ -216,8 +219,9 @@
216219
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
217220

218221
Version history
219-
5.8.4 20211214 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
220-
5.8.3 20211119 Minor bug fixes.
222+
5.8.4 20220113 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
223+
5.8.4 20211214 Minor features and bug fixes.
224+
5.8.3 20211119 Minor bug fixes.
221225
5.8.2 20211029 Minor bug fixes.
222226
5.8.1 20211026 Minor bug fixes.
223227
5.8.0 20211021 Range.Fill methods, Range Rows and Column Collection, Range.Copy improvments and Worksheet Split Panes.

src/EPPlusTest/Issues.cs

-1
Original file line numberDiff line numberDiff line change
@@ -2972,7 +2972,6 @@ public void i567()
29722972
}
29732973
}
29742974

2975-
29762975
SaveAndCleanup(package);
29772976
}
29782977
}

0 commit comments

Comments
 (0)