Skip to content

Commit

Permalink
EPPlus version 7.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jan 10, 2024
1 parent 19e3578 commit 48ce54e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 7.0.5.{build}
version: 7.0.6.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.0.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.0.5.{build}
file_version: 7.0.5.{build}
assembly_version: 7.0.6.{build}
file_version: 7.0.6.{build}
nuget:
project_feed: true
before_build:
Expand Down
9 changes: 9 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# Features / Fixed issues - EPPlus 7
## Version 7.0.6
# Minor Features
* Added new property TextSettings to set text fills, outlines and effects on chart elements to ExcelChartTitle, ExcelChartLegend, ExcelChartAxis and ExcelChartDatalabel.
* Upgraded RecyclableMemoryStream to 3.0.0.

### Fixed issues
* Improved performance when opening files with many defined names in excel.
* ToDataTable didn't handle RichText correctly when exporting values
* Calculation threw a NullReferenceException on calculating a copied worksheet with shared formulas in some cases.
* Calculation of XLOOKUP failed if it was set as a shared formula that did not return a dynamic result.
* Fixed an issue where the formula tokenizer in the formula calculation handled whitespaces in the wrong order compared to negators.
* Added a check for maximum header and footer text length.
* RichData parts did not add the content types to the [Content_Types].xml.

## Version 7.0.5
### Fixed issues
Expand Down
20 changes: 12 additions & 8 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.0.5.0</AssemblyVersion>
<FileVersion>7.0.5.0</FileVersion>
<Version>7.0.5</Version>
<AssemblyVersion>7.0.6.0</AssemblyVersion>
<FileVersion>7.0.6.0</FileVersion>
<Version>7.0.6</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,19 +18,22 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.0.5
EPPlus 7.0.6

IMPORTANT NOTICE!
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
Commercial licenses can be purchased from https://epplussoftware.com
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.

## Version 7.0.5
## Version 7.0.6
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.0.5
* Bug fixes

## Version 7.0.4
* Bug fixes
* Bug fixes

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

Version history
7.0.5 20231222 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.4 20231215 Minor bug fixes.
7.0.6 20240110 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.5 20231222 Minor bug fixes.
7.0.4 20231215 Minor bug fixes.
7.0.3 20231205 Minor bug fixes.
7.0.2 20231123 Minor bug fixes.
7.0.1 20231109 Minor bug fixes.
Expand Down

0 comments on commit 48ce54e

Please sign in to comment.