Skip to content

Commit cf364d5

Browse files
committed
EPPlus version 5.6.4
1 parent 3923675 commit cf364d5

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed

appveyor.yml

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

docs/articles/fixedissues.md

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

3+
## Version 5.6.4
4+
### Fixed issues
5+
* Setting TableColumn.CalculatedColumnFormula doesn't set the formula correctly on the range.
6+
* SUMIF function could not handle arrays or ranges of criteria.
7+
* Fixed a bug in the Tokenizer where arrays of strings did not work properly.
8+
* Comments were removed from cells when the IsRichText flag was set.
9+
* AutoFitColumns did not calculate the font widths correctly for unknown font sizes.
10+
* AutoFitColumns did not take DPI settings into account.
11+
* Some styles did not get applied in Libre Office do to missing apply attributes on the style.
12+
* Merged cells could set duplicate ranges causing the workbook to be corrupt.
13+
* Vml documents containg unclosed <BR> tags failed to load.
14+
315
## Version 5.6.3
416
### Fixed issues
517
* Changing the Normal style does not reflect correctly to cells with no style.

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.6.3.0</AssemblyVersion>
6-
<FileVersion>5.6.3.0</FileVersion>
7-
<Version>5.6.3</Version>
5+
<AssemblyVersion>5.6.4.0</AssemblyVersion>
6+
<FileVersion>5.6.4.0</FileVersion>
7+
<Version>5.6.4</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.6.3
21+
EPPlus 5.6.4
2222
IMPORTAT 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.6.3
28+
## Version 5.6.4
2929
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3030

31+
## Version 5.6.3
32+
* Bug fixes.
33+
3134
## Version 5.6.2
3235
* Bug fixes.
3336

@@ -160,8 +163,9 @@
160163
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html
161164

162165
Version history
163-
5.6.2 20210416 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
164-
5.6.2 20210407 Minor bug fixes.
166+
5.6.4 20210512 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
167+
5.6.3 20210416 Minor bug fixes.
168+
5.6.2 20210407 Minor bug fixes.
165169
5.6.1 20210322 Minor bug fixes.
166170
5.6.0 20210315 Custom table styles. Pivot table styling. Table styling enhancements.
167171
5.5.5 20210223 Minor bug fixes.

0 commit comments

Comments
 (0)