Skip to content

Commit

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

## Version 5.7.1
### Fixed issues
* Using a number format with AM/PM resulted in an output of AM or PM only.
* Validation of data validations throw an exception when Formula1 is empty even if AllowBlank was set to true
* Table behavior is incorrect when inserting rows if another table is below.
* Table calculated columns don't update the formula for added rows.
* Added cache for texts/fonts in AutoFitColumns, thanks to Simendsjo
* Setting Range.IsRichText on ranges with more than one cell did not work correctly.
* Loading packages with external references that didn't have a valid Uri failed on load.
* A value of null in a cell returned "0" in the Text property.

## Version 5.7.0
### Features
* External links
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.0.0</AssemblyVersion>
<FileVersion>5.7.0.0</FileVersion>
<Version>5.7.0</Version>
<AssemblyVersion>5.7.1.0</AssemblyVersion>
<FileVersion>5.7.1.0</FileVersion>
<Version>5.7.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,13 +18,16 @@
<PackageTags>Excel ooxml</PackageTags>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 5.7.0
EPPlus 5.7.1
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.1
* Bug fixes.

## Version 5.7.0
* External links
* Enhanced sorting
Expand All @@ -35,7 +38,7 @@
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues

## Version 5.6.4
* Bug fixes.
* Bug fixes.

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

Version history
5.7.0 20210617 Exteral links. Better sorting support. Pivot table ShowAs See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.6.4 20210512 Minor bug fixes.
5.7.1 20210706 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
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.
5.6.2 20210407 Minor bug fixes.
5.6.1 20210322 Minor bug fixes.
Expand Down

0 comments on commit 4ca7d0c

Please sign in to comment.