Skip to content

Commit 8920c66

Browse files
committed
EPPlus version 5.7.4
1 parent 6a41254 commit 8920c66

File tree

3 files changed

+30
-13
lines changed

3 files changed

+30
-13
lines changed

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 5.7.3.{build}
1+
version: 5.7.4.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
platform: Any CPU
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "5.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "5.7.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "5.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "5.7.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.7.3.{build}
17-
file_version: 5.7.3.{build}
16+
assembly_version: 5.7.4.{build}
17+
file_version: 5.7.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,5 +1,18 @@
11
# Features / Fixed issues - EPPlus 5
22

3+
## Version 5.7.4
4+
### Fixed issues
5+
* Metadata will now be removed from any formula copied to an external workbook to avoid corruption.
6+
* Renaming table now updates references in formulas.
7+
* ExcelNamedRange.Equals now works as expected.
8+
* Inserting rows that shift conditional formatting outside the worksheet now adjust addresses correctly.
9+
* Inserting rows into table formulas will not set the address to #REF!
10+
* COUNTA function will now count errors and empty strings.
11+
* LoadFromText and SaveToText did not handle quotes correctly.
12+
* Changing the font of the current theme and the normal style does not always reflect when styling empty cells.
13+
* Workbooks are getting corrupted when creating a pivot table where some cells have length greater than 255 characters.
14+
* Deleting ranges with conditional formatting with multiple addresses sometimes threw an ArgumentOutOfRangeException.
15+
* Copying a comment only add the text and the author, leaving any styling set on the comment.
316

417
## Version 5.7.3
518
### Fixed issues & minor features

src/EPPlus/EPPlus.csproj

Lines changed: 12 additions & 8 deletions
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.7.3.0</AssemblyVersion>
6-
<FileVersion>5.7.3.0</FileVersion>
7-
<Version>5.7.3</Version>
5+
<AssemblyVersion>5.7.4.0</AssemblyVersion>
6+
<FileVersion>5.7.4.0</FileVersion>
7+
<Version>5.7.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.7.3
22-
IMPORTAT NOTICE!
21+
EPPlus 5.7.4
22+
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.7.3
28+
## Version 5.7.4
2929
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3030

31+
## Version 5.7.3
32+
* Bug fixes.
33+
3134
## Version 5.7.2
3235
* Bug fixes.
3336

@@ -181,8 +184,9 @@
181184
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html
182185

183186
Version history
184-
5.7.3 20210810 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
185-
5.7.2 20210722 Minor bug fixes.
187+
5.7.4 20210826 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
188+
5.7.3 20210810 Minor bug fixes.
189+
5.7.2 20210722 Minor bug fixes.
186190
5.7.1 20210706 Minor bug fixes.
187191
5.7.0 20210617 External links. Better sorting support. Pivot table ShowAs
188192
5.6.4 20210512 Minor bug fixes.

0 commit comments

Comments
 (0)