Skip to content

Commit e1f4728

Browse files
committed
EPPlus version 6.2.9
1 parent dd37f00 commit e1f4728

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
version: 6.2.8.{build}
1+
version: 6.2.9.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "6.2.8.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "6.2.9.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "6.2.8.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "6.2.9.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
1313
dotnet_csproj:
1414
patch: true
1515
file: '**\*.csproj'
1616
version: '{version}'
17-
assembly_version: 6.2.8.{build}
18-
file_version: 6.2.8.{build}
17+
assembly_version: 6.2.9.{build}
18+
file_version: 6.2.9.{build}
1919
nuget:
2020
project_feed: true
2121
before_build:

docs/articles/fixedissues.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Features / Fixed issues - EPPlus 6
2+
## Version 6.2.9
3+
### Fixed issue
4+
* Fixed an issue where empty DataValidationnodes caused a corrupt workbook.
5+
* Ungrouping drawings put the drawings in the wrong position and sometimes caused the workbook to become corrupt.
6+
* VLOOKUP / HLOOKUP and MATCH did not work with external ranges.
7+
* The INDEX function handled row_no as col_no when the argument was only one row.
8+
* Deleting a worksheet that was selected sometimes caused a hidden worksheet to become visible.
9+
* The CEILING and FLOOR functions did not handle null values correctly in the second parameter.
10+
* Fix for loading classes with only EPPlusNestedTableColumn attributes in ExcelRangeBase.LoadFromCollection.
11+
* Fixed an issue when using concat operator with Excel errors.
12+
213
## Version 6.2.8
314
### Fixed issues
415
* Boolean style xml elements (like b, i or strike), with attribute 'val' set to 'false' or 'true' did not work.

src/EPPlus/EPPlus.csproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>6.2.8.0</AssemblyVersion>
5-
<FileVersion>6.2.8.0</FileVersion>
6-
<Version>6.2.8</Version>
4+
<AssemblyVersion>6.2.9.0</AssemblyVersion>
5+
<FileVersion>6.2.9.0</FileVersion>
6+
<Version>6.2.9</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 6.2.8
21+
EPPlus 6.2.9
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 6.2.9
30+
* Bug fixes.
31+
2932
## Version 6.2.8
3033
* Bug fixes.
3134

@@ -317,7 +320,8 @@
317320
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
318321

319322
Version history
320-
6.2.8 20230815 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
323+
6.2.8 20230908 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
324+
6.2.8 20230815 Minor bug fixes.
321325
6.2.7 20230719 Minor bug fixes.
322326
6.2.6 20230615 Minor bug fixes.
323327
6.2.5 20230614 Minor bug fixes.

0 commit comments

Comments
 (0)