Skip to content

Commit c88b685

Browse files
committed
EPPlus version 7.3.1
1 parent 0a018c4 commit c88b685

File tree

5 files changed

+26
-16
lines changed

5 files changed

+26
-16
lines changed

appveyor7.yml

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

docs/articles/fixedissues.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Features / Fixed issues - EPPlus 7
2-
## Version 7.3.1
32
### Fixed issues
4-
* Fixed duplication of conditionalformattings which could occur on repeated saves in some cases.
5-
* Some ConditionalFormattings would in some cases read or write `{``}` wrong around ids/Uid. Uid property are now always held without `{``}` internally.
3+
* Fixed duplication of conditional formatting’s which could occur on repeated saves in some cases.
4+
* Fixed issues with Boolean values in functions COUNTIFS, SUMIFS and AVERAGEIFS.
5+
* ExcelWorksheet.DimensionByValue sometimes gave an incorrect address.
6+
* EPPlus crashed on loading a workbook, if style Fills contained less than 2 items.
7+
* ExcelRange.Insert did not shift formula address on other worksheets.
8+
* The formula tokenizer failed when having a minus before an Error value (i.e. #REF!) in some cases.
9+
* Accessing PivotTables when "Save source data with file" was off caused a NullReferenceException.
10+
* The Dec2Hex, Dec2Oct and Dec2Bin functions rounded values instead of truncating them.
611

712
## Version 7.3.0
813
### Features

src/EPPlus/EPPlus.csproj

Lines changed: 10 additions & 6 deletions
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.3.0.0</AssemblyVersion>
5-
<FileVersion>7.3.0.0</FileVersion>
6-
<Version>7.3.0</Version>
4+
<AssemblyVersion>7.3.1.0</AssemblyVersion>
5+
<FileVersion>7.3.1.0</FileVersion>
6+
<Version>7.3.1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -26,13 +26,16 @@
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.3.1
30+
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31+
2932
## Version 7.3.0
3033
* Added precision as displayd to formula calculation
3134
* Add 4 new functions
32-
* Bug fixes See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
35+
* Bug fixes See
3336

3437
## Version 7.2.2
35-
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
38+
* Minor features and bug fixes.
3639

3740
## Version 7.2.1
3841
* Bug fixes
@@ -413,7 +416,8 @@
413416
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
414417

415418
Version history
416-
7.3.0 20240820 Precision as displayed support in formula calculation. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
419+
7.3.1 20240905 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
420+
7.3.0 20240820 Precision as displayed support in formula calculation.
417421
7.2.2 20240724 Minor features and bug fixes.
418422
7.2.1 20240702 Minor bug fixes.
419423
7.2.0 20240618 Pivot table calculation. Import/Export of fixed width text files. Improvment export of Conditional formatting. Copy of drawings. Transpose functionality.

src/EPPlusTest/LoadFunctions/LoadFromCollectionAttributesMemberFilterTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public void ShouldFilterNestedPropertiesByMemberList()
3131
c.Members = new MemberInfo[]
3232
{
3333
t.GetProperty("Id"),
34-
t.GetProperty("Item")
34+
t2.GetProperty("Id"),
35+
t2.GetProperty("Name")
3536
};
3637
});
3738

src/EPPlusTest/Style/TableStyleTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void AddTableStyle()
7474
s.SecondRowStripe.Style.Fill.BackgroundColor.SetColor(Color.LightYellow);
7575

7676
LoadTestdata(ws);
77-
var tbl=ws.Tables.Add(ws.Cells["A1:D101"], "Table1");
77+
var tbl=ws.Tables.Add(ws.Cells["A1:D101"], "TableStyle");
7878
tbl.StyleName = "CustomTableStyle1";
7979
//Assert
8080
Assert.AreEqual(ExcelFillStyle.Solid, s.FirstRowStripe.Style.Fill.PatternType);

0 commit comments

Comments
 (0)