Skip to content

Commit

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

## Version 5.7.4
### Fixed issues
* Metadata will now be removed from any formula copied to an external workbook to avoid corruption.
* Renaming table now updates references in formulas.
* ExcelNamedRange.Equals now works as expected.
* Inserting rows that shift conditional formatting outside the worksheet now adjust addresses correctly.
* Inserting rows into table formulas will not set the address to #REF!
* COUNTA function will now count errors and empty strings.
* LoadFromText and SaveToText did not handle quotes correctly.
* Changing the font of the current theme and the normal style does not always reflect when styling empty cells.
* Workbooks are getting corrupted when creating a pivot table where some cells have length greater than 255 characters.
* Deleting ranges with conditional formatting with multiple addresses sometimes threw an ArgumentOutOfRangeException.
* Copying a comment only add the text and the author, leaving any styling set on the comment.

## Version 5.7.3
### Fixed issues & minor features
Expand Down
20 changes: 12 additions & 8 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.3.0</AssemblyVersion>
<FileVersion>5.7.3.0</FileVersion>
<Version>5.7.3</Version>
<AssemblyVersion>5.7.4.0</AssemblyVersion>
<FileVersion>5.7.4.0</FileVersion>
<Version>5.7.4</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,16 +18,19 @@
<PackageTags>Excel ooxml</PackageTags>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 5.7.3
IMPORTAT NOTICE!
EPPlus 5.7.4
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. Previous versions are still licensed LGPL.

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

## Version 5.7.3
* Bug fixes.

## Version 5.7.2
* Bug fixes.

Expand Down Expand Up @@ -181,8 +184,9 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html

Version history
5.7.3 20210810 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.7.2 20210722 Minor bug fixes.
5.7.4 20210826 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
5.7.3 20210810 Minor bug fixes.
5.7.2 20210722 Minor bug fixes.
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.
Expand Down

0 comments on commit 8920c66

Please sign in to comment.