Skip to content

Commit 6a071c1

Browse files
committed
EPPlus version 6.2.12
1 parent 2014c6b commit 6a071c1

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

appveyor6.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
version: 6.2.11.{build}
1+
version: 6.2.12.{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.11.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "6.2.12.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "6.2.11.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "6.2.12.$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.11.{build}
18-
file_version: 6.2.11.{build}
17+
assembly_version: 6.2.12.{build}
18+
file_version: 6.2.12.{build}
1919
nuget:
2020
project_feed: true
2121
before_build:

docs/articles/fixedissues.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Features / Fixed issues - EPPlus 6
2+
## Version 6.2.12
3+
### Fixed issues
4+
* Copying a worksheet with the ExcelWorksheet.CodeModuleName set and not having a VBA project in the workbook caused the name to be duplicated.
5+
* Worksheet Copy did not copy images in the header/footer when the destination worksheet was in another workbook.
6+
* Worksheet Copy did not copy images inside group shapes correctly when the destination worksheet was in another workbook.
7+
* Copying a pivot table sometimes caused the workbook to become corrupt.
8+
* Disposed some internal MemoryStream's were not disposed correctly.
9+
210
## Version 6.2.11
3-
### Fixed issue
11+
### Fixed issues
412
* ROUNDUP function sometimes rounded incorrectly.
513
* Some internal MemoryStream's were not disposed correctly.
614
* Setting the Pivot table SourceRange to the same range as an existing Pivot Cache sometimes caused the workbook to be corrupt.
@@ -23,7 +31,7 @@
2331
* Fixed a performance issue when adding comments and controls.
2432

2533
## Version 6.2.9
26-
### Fixed issue
34+
### Fixed issues
2735
* Fixed an issue where empty DataValidationnodes caused a corrupt workbook.
2836
* Ungrouping drawings put the drawings in the wrong position and sometimes caused the workbook to become corrupt.
2937
* VLOOKUP / HLOOKUP and MATCH did not work with external ranges.

src/EPPlus/EPPlus.csproj

+10-6
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.11.0</AssemblyVersion>
5-
<FileVersion>6.2.11.0</FileVersion>
6-
<Version>6.2.11</Version>
4+
<AssemblyVersion>6.2.12.0</AssemblyVersion>
5+
<FileVersion>6.2.12.0</FileVersion>
6+
<Version>6.2.12</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.11
21+
EPPlus 6.2.12
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.12
30+
* Bug fixes.
31+
2932
## Version 6.2.11
3033
* Bug fixes.
3134

@@ -326,7 +329,8 @@
326329
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
327330

328331
Version history
329-
6.2.11 20231026 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
332+
6.2.12 20231109 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
333+
6.2.11 20231026 Minor bug fixes.
330334
6.2.10 20231002 Minor bug fixes.
331335
6.2.9 20230908 Minor bug fixes.
332336
6.2.8 20230815 Minor bug fixes.
@@ -345,7 +349,7 @@
345349
6.0.8 20220921 Minor bug fixes.
346350
5.8.14 20220921 Minor bug fixes.
347351
6.0.7 20220830 Minor bug fixes.
348-
5.8.13 20220830 Minor bug fixes.
352+
5.8.13 20220830 Minor bug fixes.
349353
6.0.6 20220708 Minor bug fixes.
350354
5.8.12 20220708 Minor bug fixes.
351355
6.0.5 20220610 Minor bug fixes.

0 commit comments

Comments
 (0)