Skip to content

Commit b417a61

Browse files
committed
EPPlus version 5.7.3
1 parent 2bb231c commit b417a61

File tree

3 files changed

+31
-11
lines changed

3 files changed

+31
-11
lines changed

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 5.7.2.{build}
1+
version: 5.7.3.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
platform: Any CPU
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "5.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "5.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "5.7.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "5.7.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 5.7.2.{build}
17-
file_version: 5.7.2.{build}
16+
assembly_version: 5.7.3.{build}
17+
file_version: 5.7.3.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
# Features / Fixed issues - EPPlus 5
22

3+
4+
## Version 5.7.3
5+
### Fixed issues & minor features
6+
* Add static methods to ExcelEncryption to encrypt and decrypt raw packages
7+
* ExcelEncryption.EncryptPackage
8+
* ExcelEncryption.DecryptPackage
9+
* Conditional formatting lost some styles and added hair borders to empty border elements.
10+
* COUNTBLANK and other functions using the ExpressionEvaluator don't handle time values correctly.
11+
* COUNTBLANK does not handle cached addresses correctly.
12+
* LoadFromText and SaveToTest did not work correctly with apostrophes.
13+
* Changing the font of the normal style and then create a new named style did not inherit the font correctly.
14+
* Data validations were shifted down instead of right when inserting cells into a range
15+
* Comments and threaded comments were not shifted correctly to the right when inserting cells.
16+
* EPPlus will now throw an exception if merging a range that overlaps a table.
17+
318
## Version 5.7.2
419
### Fixed issues
520
* Pivot cache fields that contains both int's and float's corrupts the pivot cache.
621
* Added new methods to themes major- and minor- font collection - SetLatinFont, SetComplexFont, SetEastAsianFont, Remove and RemoveAt.
722
* Null or non existing external references to images on picture objects causes save to crash.
823
* VBA projects with the "dir" stream containing the unhandled value 0x4a, caused the workbook to become corrupt.
924
* Defined names with prefix and external reference throw a NullReference on load.
25+
1026
## Version 5.7.1
1127
### Fixed issues
1228
* Using a number format with AM/PM resulted in an output of AM or PM only.

src/EPPlus/EPPlus.csproj

+10-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net5.0;netstandard2.1;netstandard2.0;net45;net40;net35</TargetFrameworks>
5-
<AssemblyVersion>5.7.2.0</AssemblyVersion>
6-
<FileVersion>5.7.2.0</FileVersion>
7-
<Version>5.7.2</Version>
5+
<AssemblyVersion>5.7.3.0</AssemblyVersion>
6+
<FileVersion>5.7.3.0</FileVersion>
7+
<Version>5.7.3</Version>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
1010
<Authors>EPPlus Software AB</Authors>
@@ -18,16 +18,19 @@
1818
<PackageTags>Excel ooxml</PackageTags>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 5.7.2
21+
EPPlus 5.7.3
2222
IMPORTAT NOTICE!
2323
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2424
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2525
Commercial licenses can be purchased from https://epplussoftware.com
2626
This applies to EPPlus version 5 and later. Previous versions are still licensed LGPL.
2727

28-
## Version 5.7.2
28+
## Version 5.7.3
2929
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
3030

31+
## Version 5.7.2
32+
* Bug fixes.
33+
3134
## Version 5.7.1
3235
* Bug fixes.
3336

@@ -178,7 +181,8 @@
178181
A list of fixed issues can be found here https://epplussoftware.com/docs/5.6/articles/fixedissues.html
179182

180183
Version history
181-
5.7.1 20210722 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
184+
5.7.3 20210810 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
185+
5.7.2 20210722 Minor bug fixes.
182186
5.7.1 20210706 Minor bug fixes.
183187
5.7.0 20210617 External links. Better sorting support. Pivot table ShowAs
184188
5.6.4 20210512 Minor bug fixes.

0 commit comments

Comments
 (0)