Skip to content

Commit 825d7a4

Browse files
committed
Merge branch 'release/epplus8.5.1' into develop8
2 parents 916403d + e34c8b9 commit 825d7a4

4 files changed

Lines changed: 29 additions & 16 deletions

File tree

appveyor8.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 8.5.0.{build}
1+
version: 8.5.1.{build}
22
branches:
33
only:
44
- develop8
@@ -10,15 +10,15 @@ install:
1010
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.100' -InstallDir "$env:ProgramFiles\dotnet"
1111
init:
1212
- ps: >-
13-
Update-AppveyorBuild -Version "8.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
13+
Update-AppveyorBuild -Version "8.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1414
15-
Write-Host "8.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
15+
Write-Host "8.5.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1616
dotnet_csproj:
1717
patch: true
1818
file: '**\*.csproj'
1919
version: '{version}'
20-
assembly_version: 8.5.0.{build}
21-
file_version: 8.5.0.{build}
20+
assembly_version: 8.5.1.{build}
21+
file_version: 8.5.1.{build}
2222
nuget:
2323
project_feed: true
2424
before_build:

docs/articles/fixedissues.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.5.1
3+
* Negation of numeric string values now returns the negated number instead of a #VALUE! error in the formula calculation.
4+
* ´ExcelPackage.Configure´ now sets ´IConfiguration´ for license info.
5+
* The WEEKDAY function now handles optional return-types 12-17 correctly.
6+
* Conditional formatting priority now remains correct after loading workbook with conditional formatting rules and add new.
7+
* Inserting rows or columns when a named range is on the maximum row is now handled as correctly. Absolute referenced defined names become #REF! when pushed outside the maximum.
8+
* NUMBERVALUE function now parses decimal and group separators for numbers correctly.
9+
210
## Version 8.5.0
311
### Minor Features
412
* Added ´CancellationToken´ to Calculate - see [Cancelling a calculation](https://github.com/EPPlusSoftware/EPPlus/wiki/Cancelling-a-calculation).
513
* Added property ´ValueFromCellsRange´ and the ´SetValueFromCellsRange´ method to data labels on chart series.
614
* Improved performance for SUMIFS, AVERAGEIFS, COUNTIFS.
715
* Improved performance for formula calculation with full column references (e.g. A:A, $B:$B).
8-
### Fixed issues
16+
### Fixed issues
917
* Deleting pictures in cells, caused a corrupt workbook in rare cases.
1018
* Fixed several formatting issues when reading and writing tables with checkboxes in them.
1119
* Fixed several issues when using a custom ExcelPackage.Workbook.NumberFormatToTextHandler:

src/EPPlus/EPPlus.csproj

Lines changed: 14 additions & 9 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;net9.0;net10.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.5.0.0</AssemblyVersion>
5-
<FileVersion>8.5.0.0</FileVersion>
6-
<Version>8.5.0</Version>
4+
<AssemblyVersion>8.5.1.0</AssemblyVersion>
5+
<FileVersion>8.5.1.0</FileVersion>
6+
<Version>8.5.1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,20 +18,24 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.5.0
21+
EPPlus 8.5.1
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 8.5.0
30-
*
29+
## Version 8.5.1
3130
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
31+
32+
## Version 8.5.0
33+
* Added ´CancellationToken´ option to the Calculate method.
34+
* Added property ´ValueFromCellsRange´ and the ´SetValueFromCellsRange´ method to data labels on chart series.
35+
* Minor bug fixes.
3236

3337
## Version 8.4.2
34-
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
38+
* Minor bug fixes.
3539

3640
## Version 8.4.1
3741
* Minor bug fixes.
@@ -555,8 +559,9 @@
555559
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
556560

557561
Version history
558-
8.5.0 20260306 Minor features and bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
559-
8.4.2 20260204 Minor bug fixes.
562+
8.5.1 20260306 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
563+
8.5.0 20260306 Minor features and bug fixes.
564+
8.4.2 20260204 Minor bug fixes.
560565
8.4.1 20260112 Minor bug fixes.
561566
8.4.0 20251212 Updated target frameworks. Minor bug fixes.
562567
8.3.1 20251128 Minor bug fixes.

src/EPPlus/EPPlusLicense.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class EPPlusLicense
1919
{
2020
private static ExcelPackageConfiguration _configuration = new ExcelPackageConfiguration();
2121
static bool _licenseSet = false;
22-
internal const string _versionDate = "2025-12-12";
22+
internal const string _versionDate = "2026-03-06";
2323
/// <summary>
2424
/// The license key used for a commercial license.
2525
/// </summary>

0 commit comments

Comments
 (0)