Skip to content

Commit 9353829

Browse files
committed
EPPlus version 6.2.15
1 parent 092a03d commit 9353829

File tree

4 files changed

+29
-11
lines changed

4 files changed

+29
-11
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.14.{build}
1+
version: 6.2.15.{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.14.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "6.2.15.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "6.2.14.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "6.2.15.$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.14.{build}
18-
file_version: 6.2.14.{build}
17+
assembly_version: 6.2.15.{build}
18+
file_version: 6.2.15.{build}
1919
nuget:
2020
project_feed: true
2121
before_build:

docs/articles/fixedissues.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Features / Fixed issues - EPPlus 6
2+
## Version 6.2.15
3+
### Fixed issues
4+
* The JSON export did not encode column header cells and comment texts.
5+
* Worksheet Copy did not copy images with hyperlinks correctly.
6+
27
## Version 6.2.14
38
### Fixed issues
49
* Added support for negation of single cell named values in the formula calculation.

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>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>6.2.14.0</AssemblyVersion>
5-
<FileVersion>6.2.14.0</FileVersion>
6-
<Version>6.2.14</Version>
4+
<AssemblyVersion>6.2.15.0</AssemblyVersion>
5+
<FileVersion>6.2.15.0</FileVersion>
6+
<Version>6.2.15</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 6.2.14
21+
EPPlus 6.2.15
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.15
30+
* Bug fixes.
31+
2932
## Version 6.2.14
3033
* Bug fixes.
31-
34+
3235
## Version 6.2.13
3336
* Bug fixes.
3437

@@ -335,7 +338,8 @@
335338
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
336339

337340
Version history
338-
6.2.14 20231205 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
341+
6.2.15 20231215 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
342+
6.2.14 20231205 Minor bug fixes.
339343
6.2.13 20231123 Minor bug fixes.
340344
6.2.12 20231109 Minor bug fixes.
341345
6.2.11 20231026 Minor bug fixes.

src/EPPlusTest/Issues.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5584,5 +5584,14 @@ public void i1203()
55845584
SaveAndCleanup(p);
55855585
}
55865586
}
5587+
[TestMethod]
5588+
public void s553()
5589+
{
5590+
using (var p = OpenTemplatePackage("ExportTest2.xlsx"))
5591+
{
5592+
var ws = p.Workbook.Worksheets[0];
5593+
var json = ws.Cells["C2"].ToJson();
5594+
}
5595+
}
55875596
}
55885597
}

0 commit comments

Comments
 (0)