Skip to content

Commit 7a6c097

Browse files
committed
EPPlus version 7.0.2
1 parent 298f6dc commit 7a6c097

File tree

3 files changed

+38
-15
lines changed

3 files changed

+38
-15
lines changed

appveyor7.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
version: 7.0.1.{build}
1+
version: 7.0.2.{build}
22
branches:
33
only:
44
- develop7
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "7.0.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.0.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
1313
dotnet_csproj:
1414
patch: true
1515
file: '**\*.csproj'
1616
version: '{version}'
17-
assembly_version: 7.0.1.{build}
18-
file_version: 7.0.1.{build}
17+
assembly_version: 7.0.2.{build}
18+
file_version: 7.0.2.{build}
1919
nuget:
2020
project_feed: true
2121
before_build:

docs/articles/fixedissues.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.0.2
3+
### Fixed issues
4+
* External references did not work correctly with the VLOOKUP function.
5+
* Table addresses sometimes returned an incorrect address in the formula calculation.
6+
* Empty arguments was not handled correctly in the Unique, Sort and SortBy functions.
7+
* Corrected behaviour for comparisons between null values and empty strings in range operators.
8+
* Fixed a bug where adding the same image to a worksheet twice with the same path resulted in a null reference.
9+
* Resolved workbooks becoming corrupt when setting ShowTotalRow on tables to true, if data existed on the row below the table. The row will now be overwritten by the total row.
10+
* Tab-characters in Richtext's are now decoded correctly.
11+
* Last character of RichText.Text were truncated under Linux.
12+
* LoadFromCollection: support for SortOrder attribute on nested classes.
13+
214
## Version 7.0.1
315
### Fixed issues
416
* Copying a worksheet with the ExcelWorksheet.CodeModuleName set and not having a VBA project in the workbook caused the name to be duplicated.

src/EPPlus/EPPlus.csproj

+21-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.0.1.0</AssemblyVersion>
5-
<FileVersion>7.0.1.0</FileVersion>
6-
<Version>7.0.1</Version>
4+
<AssemblyVersion>7.0.2.0</AssemblyVersion>
5+
<FileVersion>7.0.2.0</FileVersion>
6+
<Version>7.0.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,17 +18,20 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.0.1
21+
EPPlus 7.0.2
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
2525
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
2626
Commercial licenses can be purchased from https://epplussoftware.com
2727
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.
2828

29-
## Version 7.0.1
29+
## Version 7.0.2
3030
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31-
31+
32+
## Version 7.0.1
33+
* Bug fixes
34+
3235
## Version 7.0.0
3336
* Calculation engine update to support array formulas. https://epplussoftware.com/en/Developers/EPPlus7
3437
* Support for calculating legacy / dynamic array formulas.
@@ -45,8 +48,14 @@
4548
* Cross worksheet support formula support.
4649
* Extended styling options for color scales, data bars and icon sets.
4750

51+
## Version 6.2.13
52+
* Bug fixes.
53+
54+
## Version 6.2.12
55+
* Bug fixes.
56+
4857
## Version 6.2.11
49-
* Bug fixes.
58+
* Bug fixes.
5059

5160
## Version 6.2.10
5261
* Bug fixes.
@@ -342,12 +351,14 @@
342351
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
343352

344353
Version history
345-
7.0.1 20231109 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
354+
7.0.2 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
355+
7.0.1 20231109 Minor bug fixes.
346356
7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7
347-
6.2.12 20231026 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
357+
6.2.13 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
358+
6.2.12 20231026 Minor bug fixes.
348359
6.2.11 20231023 Minor bug fixes.
349360
7.0.0-rc 1 20231002 Calculation engine update for array formulas.
350-
6.2.10 20231002 Minor bug fixes.See
361+
6.2.10 20231002 Minor bug fixes.See
351362
7.0.0-beta 1 20230912 Calculation engine update for array formulas.
352363
6.2.9 20230908 Minor bug fixes.
353364
6.2.8 20230815 Minor bug fixes.

0 commit comments

Comments
 (0)