Skip to content

Commit

Permalink
EPPlus version 6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jun 10, 2022
1 parent 519a613 commit 084369c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 15 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 6.0.4.{build}
version: 6.0.5.{build}
branches:
only:
- develop
Expand All @@ -7,16 +7,16 @@ image: Visual Studio 2022
platform: Any CPU
init:
- ps: >-
Update-AppveyorBuild -Version "6.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "6.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.0.4.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "6.0.5.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 6.0.4.{build}
file_version: 6.0.4.{build}
assembly_version: 6.0.5.{build}
file_version: 6.0.5.{build}
nuget:
project_feed: true
before_build:
Expand Down
14 changes: 14 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Features / Fixed issues - EPPlus 6
## Version 6.0.5
### Fixed issues
* VBA code modules with LF only as EOL, causes code module to load incorrectly.
* INDIRECT function did not always set the correct data type when returning a single cell.
* Clearing ranges with threaded comments caused an exception.
* Copying drawings with hyperlinks failed.
* Improves insert/delete performance when working with drawings.
* Insert row caused images to change size in some cases when having two anchored drawings.
* Improved handling of percentage values in strings in formula calculation.
* Custom index colors are now loaded from the styles.xml, thanks to Raboud.
* Fix to get the app0 header length correct for internal jpg reader for the internal image reader.
* Images in the header row was not correctly rendered in the HTML export for ranges.
* Upgraded .NET 4.5.2 to 4.6.2, as 4.5.2 has reached End of Support

## Version 6.0.4
### Fixed issues
* Improved handling of circular references for SUMIF and COUNTIF
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>net6.0;net5.0;netstandard2.1;netstandard2.0;net452;net35</TargetFrameworks>
<AssemblyVersion>6.0.4.0</AssemblyVersion>
<FileVersion>6.0.4.0</FileVersion>
<Version>6.0.4</Version>
<TargetFrameworks>net6.0;net5.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>6.0.5.0</AssemblyVersion>
<FileVersion>6.0.5.0</FileVersion>
<Version>6.0.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -17,17 +17,20 @@
<PackageTags>Excel ooxml</PackageTags>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 6.0.4
EPPlus 6.0.5

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.0.4
## Version 6.0.5
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues

## Version 6.0.4
* Bug fixes.

## Version 6.0.3
* Html Export - https://github.com/EPPlusSoftware/EPPlus/wiki/HTML-Export
* Json Export - https://github.com/EPPlusSoftware/EPPlus/wiki/JSON-Export
Expand Down Expand Up @@ -249,8 +252,10 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html

Version history
6.0.4 20220512 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.8.10 20220512 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.0.5 20220610 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.8.11 20220610 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.0.4 20220512 Minor bug fixes.
5.8.10 20220512 Minor bug fixes.
6.0.3 20220412 Html and JSON export. New drawing handling. https://epplussoftware.com/Developers/EPPlus6
5.8.9 20220411 Minor bug fixes.
5.8.8 20220322 Minor bug fixes.
Expand Down Expand Up @@ -321,7 +326,7 @@
<DefineConstants>Core;NET50</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net452'">
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
<DefineConstants>NET45;NETFULL</DefineConstants>
</PropertyGroup>

Expand Down Expand Up @@ -375,7 +380,7 @@
<Reference Include="WindowsBase" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net452'">
<ItemGroup Condition=" '$(TargetFramework)' == 'net462'">
<Reference Include="PresentationCore" />
<Reference Include="System" />
<Reference Include="System.configuration" />
Expand Down

0 comments on commit 084369c

Please sign in to comment.