Skip to content

Commit

Permalink
EPPlus version 5.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Jul 22, 2021
1 parent 3b1eff8 commit 7db9297
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 12 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 5.7.1.{build}
version: 5.7.2.{build}
branches:
only:
- develop
configuration: release
platform: Any CPU
init:
- ps: >-
Update-AppveyorBuild -Version "5.7.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "5.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "5.7.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "5.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 5.7.1.{build}
file_version: 5.7.1.{build}
assembly_version: 5.7.2.{build}
file_version: 5.7.2.{build}
nuget:
project_feed: true
before_build:
Expand Down
7 changes: 7 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Features / Fixed issues - EPPlus 5

## Version 5.7.2
### Fixed issues
* Pivot cache fields that contains both int's and float's corrupts the pivot cache.
* Added new methods to themes major- and minor- font collection - SetLatinFont, SetComplexFont, SetEastAsianFont, Remove and RemoveAt.
* Null or non existing external references to images on picture objects causes save to crash.
* VBA projects with the "dir" stream containing the unhandled value 0x4a, caused the workbook to become corrupt.
* Defined names with prefix and external reference throw a NullReference on load.
## Version 5.7.1
### Fixed issues
* Using a number format with AM/PM resulted in an output of AM or PM only.
Expand Down
18 changes: 11 additions & 7 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.1;netstandard2.0;net45;net40;net35</TargetFrameworks>
<AssemblyVersion>5.7.1.0</AssemblyVersion>
<FileVersion>5.7.1.0</FileVersion>
<Version>5.7.1</Version>
<AssemblyVersion>5.7.2.0</AssemblyVersion>
<FileVersion>5.7.2.0</FileVersion>
<Version>5.7.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,24 +18,27 @@
<PackageTags>Excel ooxml</PackageTags>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 5.7.1
EPPlus 5.7.2
IMPORTAT 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. Previous versions are still licensed LGPL.

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

## Version 5.7.1
* Bug fixes.

## Version 5.7.0
* External links
* Enhanced sorting
* Table and auto filter sort state.
* Horizontal sorting
* Pivot table auto sort
* Pivot tables - Support for Show Value As on data fields
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
* Bug fixes.

## Version 5.6.4
* Bug fixes.
Expand Down Expand Up @@ -175,7 +178,8 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html

Version history
5.7.1 20210706 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.7.1 20210722 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.7.1 20210706 Minor bug fixes.
5.7.0 20210617 External links. Better sorting support. Pivot table ShowAs
5.6.4 20210512 Minor bug fixes.
5.6.3 20210416 Minor bug fixes.
Expand Down

0 comments on commit 7db9297

Please sign in to comment.