Skip to content

Commit ec05d2e

Browse files
committed
EPPlus version 8.0.8
1 parent 8001b17 commit ec05d2e

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

appveyor8.yml

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

docs/articles/fixedissues.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Features / Fixed issues - EPPlus 8
2+
## Version 8.0.8
3+
* Fix for FileLoadException due to System.Memory referenced by RecyclableMemoryStream.
4+
* Conditional formattings could cause invalid xml due to not using InvarianCulture when setting the numeric values.
5+
* ExcelRangeBase - LoadFromCollection/LoadFromDataTable sometimes cleared formulas outside the range.
6+
* The OFFSET function did not set height or width from reference if arguments was left empty.
7+
* Removed usage of reflection in Vba Moduals to improve AOT support - PR by oreadvanthink
8+
29
## Version 8.0.7
310
* Added validation for number formats (brackets) during formula calculation. Also affects the Range.Text property.
411
* Fix for REF errors in the OFFSET function.

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;net9.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>8.0.7.0</AssemblyVersion>
5-
<FileVersion>8.0.7.0</FileVersion>
6-
<Version>8.0.7</Version>
4+
<AssemblyVersion>8.0.8.0</AssemblyVersion>
5+
<FileVersion>8.0.8.0</FileVersion>
6+
<Version>8.0.8</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,17 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 8.0.7
21+
EPPlus 8.0.8
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.0.8
30+
* Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
31+
2932
## Version 8.0.7
3033
* Minor bug fixes.
3134

@@ -504,8 +507,9 @@
504507
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
505508

506509
Version history
507-
8.0.7 20250702 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
508-
8.0.6 20250619 Minor bug fixes.
510+
8.0.8 20250722 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
511+
8.0.7 20250702 Minor bug fixes.
512+
8.0.6 20250619 Minor bug fixes.
509513
8.0.5 20250515 Fix for external links issue in 8.0.4.
510514
8.0.4 20250514 Minor bug fixes.
511515
8.0.3 20250430 Minor bug fixes.

0 commit comments

Comments
 (0)