Skip to content

Commit ec07f11

Browse files
committed
EPPlus version 5.8.1
1 parent 61fa0f6 commit ec07f11

File tree

3 files changed

+26
-14
lines changed

3 files changed

+26
-14
lines changed

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 5.8.0.{build}
1+
version: 5.8.1.{build}
22
branches:
33
only:
44
- develop
55
configuration: release
66
platform: Any CPU
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "5.8.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "5.8.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "5.8.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "5.8.1.$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.8.0.{build}
17-
file_version: 5.8.0.{build}
16+
assembly_version: 5.8.1.{build}
17+
file_version: 5.8.1.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Features / Fixed issues - EPPlus 5
2+
## Version 5.8.1
3+
### Fixed issues & minor features
4+
* Support for complex types in LoadFromCollection with attributes.
5+
* Fixed a bug where ExcelFunction.ArgToDecimal rethrow other error types as #VALUE.
6+
* Improved handling of decimals in Concat operations during calculation.
7+
* High-Low lines / Up-Down bars and Droplines were not loaded from an existing package.
8+
* Removed validation for negative values in conditional formatting priority, as negative values should be allowed
9+
210
## Version 5.8.0
311
### Features
412
* ExcelWorksheetView.SplitPanes method added

src/EPPlus/EPPlus.csproj

+13-9
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.8.0.0</AssemblyVersion>
6-
<FileVersion>5.8.0.0</FileVersion>
7-
<Version>5.8.0</Version>
5+
<AssemblyVersion>5.8.1.0</AssemblyVersion>
6+
<FileVersion>5.8.1.0</FileVersion>
7+
<Version>5.8.1</Version>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
1010
<Authors>EPPlus Software AB</Authors>
@@ -18,13 +18,16 @@
1818
<PackageTags>Excel ooxml</PackageTags>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 5.8.0
21+
EPPlus 5.8.1
2222
IMPORTANT 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.8.1
29+
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
30+
2831
## Version 5.8.0
2932
* ExcelWorksheetView.SplitPanes method added
3033
* ExcelRangeBase Fill method added
@@ -37,9 +40,9 @@
3740
* ExcelRangeBase.EntireRow
3841
* ExcelRangeBase.EntireColum
3942
* Support for formatting and deleting individual Chart Legend Entries.
40-
* Range.Copy improvments.
41-
* Bug fixes
42-
43+
* Range.Copy improvments.
44+
* Bug fixes
45+
4346
## Version 5.7.5
4447
* Bug fixes. https://epplussoftware.com/Developers/MinorFeaturesAndIssues
4548

@@ -189,7 +192,7 @@
189192
* Insert/Delete in ranges and tables.
190193

191194
Breaking Changes
192-
* LoadFromCollection changes the data type of parameter 'TableStyle' from 'TableStyles' to 'TableStyles?'. The default value, if omitted, changes from 'TableStyles.None' to null. 'TableStyles.None', if supplied will create a table with style None.
195+
* LoadFromCollection changes the data type of parameter 'TableStyle' from 'TableStyles' to 'TableStyles?'. The default value, if omitted, changes from 'TableStyles.None' to null. 'TableStyles.None', if supplied will create a table with style None.
193196
* The default behavior for the Worksheet collection base in .NET Framework has changed from 1 to 0. This is the same default behavior as in .NET core today.
194197
* Pictures have changed the behavior as the oneCellAnchor tag is used instead of the twoCellAnchor tag with the editAs="oneCell".
195198
* Pivot tables will always refresh on load.
@@ -203,7 +206,8 @@
203206
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
204207

205208
Version history
206-
5.8.0 20211021 Range.Fill methods, Range Rows and Column Collection, Range.Copy improvments and Worsheet SplitPanes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
209+
5.8.1 20211026 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
210+
5.8.0 20211021 Range.Fill methods, Range Rows and Column Collection, Range.Copy improvments and Worksheet Split Panes.
207211
5.7.5 20210921 Minor bug fixes.
208212
5.7.4 20210826 Minor bug fixes.
209213
5.7.3 20210810 Minor bug fixes.

0 commit comments

Comments
 (0)