Skip to content

Commit

Permalink
EPPlus version 6.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jun 15, 2023
1 parent 399fd0c commit 13fcbe0
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 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.5.{build}
version: 6.2.6.{build}
branches:
only:
- develop
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "6.2.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.2.6.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.2.5.$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"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.2.5.{build}
file_version: 6.2.5.{build}
assembly_version: 6.2.6.{build}
file_version: 6.2.6.{build}
nuget:
project_feed: true
before_build:
Expand Down
7 changes: 6 additions & 1 deletion docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Features / Fixed issues - EPPlus 6
## 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
* An ArgumentOutOfRangeException was sometimes thrown when loading a workbook.

## Version 6.2.5
###Fixed issues
### Fixed issues
* EPPlus now allows saving of drawing groups containing drawings with same name.
* Copying a formula containing a table reference caused an invalid formula.
* Deleting and inserting into worksheets with data validations sometimes blocked adding new data validations on valid ranges.
Expand Down
25 changes: 15 additions & 10 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.5.0</AssemblyVersion>
<FileVersion>6.2.5.0</FileVersion>
<Version>6.2.5</Version>
<AssemblyVersion>6.2.6.0</AssemblyVersion>
<FileVersion>6.2.6.0</FileVersion>
<Version>6.2.6</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,19 +18,23 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.2.5
EPPlus 6.2.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 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.

## Version 6.2.5
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
* Bug fixes.

## Version 6.2.4
* Bug fixes.
* Bug fixes.

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

Version history
6.2.5 20230614 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.4 20230515 Minor bug fixes.
6.2.6 20230615 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.5 20230614 Minor bug fixes.
6.2.4 20230515 Minor bug fixes.
6.2.3 20230502 Minor bug fixes.
6.2.2 20230417 Minor bug fixes.
6.2.1 20230406 Minor bug fixes.
Expand Down Expand Up @@ -471,7 +476,7 @@
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream">
<Version>2.2.1</Version>
</PackageReference>
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.1" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.3" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
</ItemGroup>

Expand All @@ -480,7 +485,7 @@
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream">
<Version>2.2.1</Version>
</PackageReference>
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="7.0.0" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="7.0.2" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 13fcbe0

Please sign in to comment.