Skip to content

Commit a4cb972

Browse files
committed
EPPlus version 6.2.19
1 parent 74b4381 commit a4cb972

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

appveyor6.yml

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

docs/articles/fixedissues.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Features / Fixed issues - EPPlus 6
2+
## Version 6.2.19
3+
* Operators did not compare numeric values and strings correctly
4+
* NumberValue function returned #VALUE! instead of 0 when called with an empty string.
5+
26
## Version 6.2.18
37
* Setting style's (like Font for a cell) on the row level did not get the cell style from the column level causing cells intersecting to loose that style.
48
* ExcelRangeBase.SaveToText and ExcelRangeBase.SaveToTextAsync with a FileInfo did not close the file.

src/EPPlus/EPPlus.csproj

Lines changed: 12 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.18.0</AssemblyVersion>
5-
<FileVersion>6.2.18.0</FileVersion>
6-
<Version>6.2.18</Version>
4+
<AssemblyVersion>6.2.19.0</AssemblyVersion>
5+
<FileVersion>6.2.19.0</FileVersion>
6+
<Version>6.2.19</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 6.2.18
21+
EPPlus 6.2.19
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.19
30+
* Bug fixes.
31+
32+
## Version 6.2.18
33+
* Bug fixes.
34+
2935
## Version 6.2.18
3036
* Bug fixes.
3137

@@ -347,7 +353,8 @@
347353
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
348354

349355
Version history
350-
6.2.18 20240311 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
356+
6.2.19 20240326 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
357+
6.2.18 20240311 Minor bug fixes.
351358
6.2.17 20240215 Minor bug fixes.
352359
6.2.16 20240110 Minor bug fixes.
353360
6.2.15 20231215 Minor bug fixes.

0 commit comments

Comments
 (0)