Skip to content

Commit a3bccfe

Browse files
committed
EPPlus version 5.7.5
1 parent 087784e commit a3bccfe

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 5.7.4.{build}
1+
version: 5.7.5.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
platform: Any CPU
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "5.7.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "5.7.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "5.7.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "5.7.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.7.4.{build}
17-
file_version: 5.7.4.{build}
16+
assembly_version: 5.7.5.{build}
17+
file_version: 5.7.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.7.5
4+
### Fixed issues
5+
* ExcelTable.CalculatedColumnFormula were not updated when inserting/deleting rows and columns.
6+
* Copying a worksheet- or adding a VBA module- with a name starting with a number caused the macro-enabled workbook to be corrupt.
7+
* LoadFromCollection with attributes didn't create a table if TableStyle was none.
8+
* Fixed LEN functions incorrect handling of cached addresses.
9+
* Fixed handling of worksheet names with escaped single quotes in the formula parser.
10+
* ExcelPicture.SetSize sets an incorrect width when having a non-default dpi on an image.
11+
* ExcelColumn.ColumnMax was not correctly set when deleting a column within a column span.
12+
* Updating a pivot cache share among multiple pivot tables did not update/remove fields if the source range fields had been altered.
13+
* Clearing or overwriting a cell in a shared formula range did not work correctly.
14+
* Formulas in conditional formatting and data validations were not updated when inserting and deleting rows and columns.
15+
* When deleting columns, defined names were not always correctly updated.
16+
* ExpressionEvaluator could not handle a leading equal operator in combination with wildcards
17+
318
## Version 5.7.4
419
### Fixed issues
520
* Metadata will now be removed from any formula copied to an external workbook to avoid corruption.

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.7.4.0</AssemblyVersion>
6-
<FileVersion>5.7.4.0</FileVersion>
7-
<Version>5.7.4</Version>
5+
<AssemblyVersion>5.7.5.0</AssemblyVersion>
6+
<FileVersion>5.7.5.0</FileVersion>
7+
<Version>5.7.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.7.4
21+
EPPlus 5.7.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.7.4
28+
## Version 5.7.5
2929
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3030

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

@@ -184,7 +187,8 @@
184187
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html
185188

186189
Version history
187-
5.7.4 20210826 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
190+
5.7.5 20210921 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
191+
5.7.4 20210826 Minor bug fixes.
188192
5.7.3 20210810 Minor bug fixes.
189193
5.7.2 20210722 Minor bug fixes.
190194
5.7.1 20210706 Minor bug fixes.
@@ -213,7 +217,7 @@
213217
5.1.0 20200401 Insert, Delete in Ranges and Tables. Minor bug fixes.
214218
5.0.4 20200310 Minor bug fixes.
215219
5.0.3 20200308 Initial release EPPlus 5
216-
</PackageReleaseNotes>
220+
</PackageReleaseNotes>
217221
<SignAssembly>true</SignAssembly>
218222
<AssemblyOriginatorKeyFile>OpenOfficeXml.snk</AssemblyOriginatorKeyFile>
219223
<NeutralLanguage />

0 commit comments

Comments
 (0)