Skip to content

Commit

Permalink
EPPlus version 7.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Nov 23, 2023
1 parent 298f6dc commit 7a6c097
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 15 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
@@ -1,21 +1,21 @@
version: 7.0.1.{build}
version: 7.0.2.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.0.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.0.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.0.1.{build}
file_version: 7.0.1.{build}
assembly_version: 7.0.2.{build}
file_version: 7.0.2.{build}
nuget:
project_feed: true
before_build:
Expand Down
12 changes: 12 additions & 0 deletions docs/articles/fixedissues.md
@@ -1,4 +1,16 @@
# Features / Fixed issues - EPPlus 7
## Version 7.0.2
### Fixed issues
* External references did not work correctly with the VLOOKUP function.
* Table addresses sometimes returned an incorrect address in the formula calculation.
* Empty arguments was not handled correctly in the Unique, Sort and SortBy functions.
* Corrected behaviour for comparisons between null values and empty strings in range operators.
* Fixed a bug where adding the same image to a worksheet twice with the same path resulted in a null reference.
* 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.
* Tab-characters in Richtext's are now decoded correctly.
* Last character of RichText.Text were truncated under Linux.
* LoadFromCollection: support for SortOrder attribute on nested classes.

## Version 7.0.1
### Fixed issues
* Copying a worksheet with the ExcelWorksheet.CodeModuleName set and not having a VBA project in the workbook caused the name to be duplicated.
Expand Down
31 changes: 21 additions & 10 deletions src/EPPlus/EPPlus.csproj
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.0.1.0</AssemblyVersion>
<FileVersion>7.0.1.0</FileVersion>
<Version>7.0.1</Version>
<AssemblyVersion>7.0.2.0</AssemblyVersion>
<FileVersion>7.0.2.0</FileVersion>
<Version>7.0.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,17 +18,20 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.0.1
EPPlus 7.0.2

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. Earlier versions are still licensed LGPL.

## Version 7.0.1
## Version 7.0.2
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues


## Version 7.0.1
* Bug fixes

## Version 7.0.0
* Calculation engine update to support array formulas. https://epplussoftware.com/en/Developers/EPPlus7
* Support for calculating legacy / dynamic array formulas.
Expand All @@ -45,8 +48,14 @@
* Cross worksheet support formula support.
* Extended styling options for color scales, data bars and icon sets.

## Version 6.2.13
* Bug fixes.

## Version 6.2.12
* Bug fixes.

## Version 6.2.11
* Bug fixes.
* Bug fixes.

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

Version history
7.0.1 20231109 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.2 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.1 20231109 Minor bug fixes.
7.0.0 20231026 Calculation engine update for array formulas. https://epplussoftware.com/en/Developers/EPPlus7
6.2.12 20231026 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.13 20231123 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.12 20231026 Minor bug fixes.
6.2.11 20231023 Minor bug fixes.
7.0.0-rc 1 20231002 Calculation engine update for array formulas.
6.2.10 20231002 Minor bug fixes.See
6.2.10 20231002 Minor bug fixes.See
7.0.0-beta 1 20230912 Calculation engine update for array formulas.
6.2.9 20230908 Minor bug fixes.
6.2.8 20230815 Minor bug fixes.
Expand Down

0 comments on commit 7a6c097

Please sign in to comment.