Skip to content

Commit

Permalink
EPPlus version 6.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jul 19, 2023
1 parent 3a3bdb7 commit e2588ed
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
version: 6.2.6.{build}
4version: 6.2.7.{build}
branches:
only:
- develop
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.7.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.6.{build}
file_version: 6.2.6.{build}
assembly_version: 6.2.7.{build}
file_version: 6.2.7.{build}
nuget:
project_feed: true
before_build:
Expand Down
10 changes: 10 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Features / Fixed issues - EPPlus 6
## Version 6.2.7
### Fixed issues
* Copying a worksheet with more than two tables to a new workbook sometimes throws an exception due to different table ids.
* Matching an existing pivot table cache against source data was case-sensitive.
* Added support for hidden columns in EPPlusTableColumn attribute.
* The Calculate method threw an exception if a defined name contained an error value.
* Fixed an issue when updating formulas in data validations and conditional formatting’s when inserting/delete rows or columns.
* Conditional formatting text types would fail to function correctly after deleting a column.
* Copying a worksheet with a defined name with a formula pointing to another worksheet caused a NullReferenceException.

## Version 6.2.6
### Fixed issues
* Updated System.Security.Cryptography.Pkcs for security vulnerability in .NET 6 and 7. See https://github.com/dotnet/runtime/issues/87498
Expand Down
11 changes: 7 additions & 4 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>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>6.2.6.0</AssemblyVersion>
<FileVersion>6.2.6.0</FileVersion>
<Version>6.2.6</Version>
<AssemblyVersion>6.2.7.0</AssemblyVersion>
<FileVersion>6.2.7.0</FileVersion>
<Version>6.2.7</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,14 +18,17 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.2.6
EPPlus 6.2.7

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 6.2.7
* Bug fixes.

## Version 6.2.6
* Updated System.Security.Cryptography.Pkcs for security vulnerability in .NET 6 and 7. See https://github.com/dotnet/runtime/issues/87498
* Bug fixes.
Expand Down

0 comments on commit e2588ed

Please sign in to comment.