Skip to content

Commit 75f7dee

Browse files
committed
EPPlus version 7.5.2
1 parent f927721 commit 75f7dee

File tree

3 files changed

+31
-11
lines changed

3 files changed

+31
-11
lines changed

appveyor7.yml

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

docs/articles/fixedissues.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.5.2
3+
* Pivot tables with blanks could cause the pivot table to become corrupt.
4+
* Fixed error handling in the TEXTJOIN, TEXTSPLIT and CONCAT functions.
5+
* EPPlus throw an Exception when trying to delete the last column in a worksheet.
6+
* ExcelColor.LookupColor() returned an unexpected color code for empty colors. LookupColor() will now returns an empty string for empty colors.
7+
* DimensionByValue throw an System.ArgumentException: 'Column out of range' in some cases.
8+
* When having a column style on a column that spans multiple columns only the first is considered when reading a package.
9+
* XLOOKUP now returns emtpy string instead of #N/A when the third argument is an empty string.
10+
* ToDataTable did no return rich text cells correctly
11+
* ExcelWorksheets.MoveToStart did not always work correctly if IsWorksheets1Based was set.
12+
* Reading boolean properties of data validations saved in LibreOffice was not correctly read.
13+
* Adding a pivot table page field could crash in some cases.
14+
* Linked images crashed on read if the link attribute was empty.
15+
* Fixed "Worksheet position out of range" exception when calculating a formula having IsWorksheets1Based set.
16+
217
## Version 7.5.1
318
* Style set on column/row level did not save on cells with a value and styleId is 0.
419
* Fix for inserting rows after array formulas when referring to worksheets with '#' as part of the worksheet name.

src/EPPlus/EPPlus.csproj

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.5.1.0</AssemblyVersion>
5-
<FileVersion>7.5.1.0</FileVersion>
6-
<Version>7.5.1</Version>
4+
<AssemblyVersion>7.5.2.0</AssemblyVersion>
5+
<FileVersion>7.5.2.0</FileVersion>
6+
<Version>7.5.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,22 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.5.1
21+
EPPlus 7.5.2
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2525
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2626
Commercial licenses can be purchased from https://epplussoftware.com
2727
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.
2828

29-
## Version 7.5.1
29+
## Version 7.5.2
30+
* Pivot tables could crash
31+
* Reading linked images was failed if a relation attribute existed but did not have a value.
3032
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31-
33+
34+
## Version 7.5.1
35+
* Minor features and bug fixes.
36+
3237
## Version 7.5.0
3338
* Added signatures to the EPPlus.dll's and the EPPlus Nuget package.
3439
* Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField

0 commit comments

Comments
 (0)