Skip to content

Commit 48ce54e

Browse files
committed
EPPlus version 7.0.6
1 parent 19e3578 commit 48ce54e

File tree

3 files changed

+26
-13
lines changed

3 files changed

+26
-13
lines changed

appveyor7.yml

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

docs/articles/fixedissues.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Features / Fixed issues - EPPlus 7
22
## Version 7.0.6
3+
# Minor Features
4+
* Added new property TextSettings to set text fills, outlines and effects on chart elements to ExcelChartTitle, ExcelChartLegend, ExcelChartAxis and ExcelChartDatalabel.
5+
* Upgraded RecyclableMemoryStream to 3.0.0.
6+
37
### Fixed issues
48
* Improved performance when opening files with many defined names in excel.
59
* ToDataTable didn't handle RichText correctly when exporting values
10+
* Calculation threw a NullReferenceException on calculating a copied worksheet with shared formulas in some cases.
11+
* Calculation of XLOOKUP failed if it was set as a shared formula that did not return a dynamic result.
12+
* Fixed an issue where the formula tokenizer in the formula calculation handled whitespaces in the wrong order compared to negators.
13+
* Added a check for maximum header and footer text length.
14+
* RichData parts did not add the content types to the [Content_Types].xml.
615

716
## Version 7.0.5
817
### Fixed issues

src/EPPlus/EPPlus.csproj

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.0.5.0</AssemblyVersion>
5-
<FileVersion>7.0.5.0</FileVersion>
6-
<Version>7.0.5</Version>
4+
<AssemblyVersion>7.0.6.0</AssemblyVersion>
5+
<FileVersion>7.0.6.0</FileVersion>
6+
<Version>7.0.6</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,19 +18,22 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.0.5
21+
EPPlus 7.0.6
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 7.0.5
29+
## Version 7.0.6
3030
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3131

32+
## Version 7.0.5
33+
* Bug fixes
34+
3235
## Version 7.0.4
33-
* Bug fixes
36+
* Bug fixes
3437

3538
## Version 7.0.3
3639
* Bug fixes
@@ -360,8 +363,9 @@
360363
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
361364

362365
Version history
363-
7.0.5 20231222 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
364-
7.0.4 20231215 Minor bug fixes.
366+
7.0.6 20240110 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
367+
7.0.5 20231222 Minor bug fixes.
368+
7.0.4 20231215 Minor bug fixes.
365369
7.0.3 20231205 Minor bug fixes.
366370
7.0.2 20231123 Minor bug fixes.
367371
7.0.1 20231109 Minor bug fixes.

0 commit comments

Comments
 (0)