Skip to content

Commit

Permalink
EPPlus version 7.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Sep 12, 2023
1 parent 0cbac12 commit 20a5129
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
6 changes: 4 additions & 2 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Features / Fixed issues - EPPlus 6

## Version 7.0.0-Preview 2
## Version 7.0.0-Beta 1
* Calculation engine update to to support array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
* Support for calculating legacy / dynamic array formulas.
* Support for intersect operator.
* Support for implicit intersection.
* Support for array parameters in functions.
* Better support for using the colon operator with functions.
* 65 new functions
* Better handling of circular references
* 90 new functions
* Faster optimized calculation engine with configurable expression caching.
* Breaking changes: Updated calculation engine, See [Breaking Changes in EPPlus 7](https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-7) for more information

## Version 6.2.4
Expand Down
37 changes: 26 additions & 11 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
@@ -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.0.0</AssemblyVersion>
<FileVersion>7.0.0.0</FileVersion>
<Version>7.0.0-preview2</Version>
<AssemblyVersion>7.0.0.1</AssemblyVersion>
<FileVersion>7.0.0.1</FileVersion>
<Version>7.0.0-Beta1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,24 +18,35 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.0.0-Preview 2
EPPlus 7.0.0-Beta 1

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.0-Preview 2
## Version 7.0.0-Beta 1
* Calculation engine update to support array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
* Support for calculating legacy / dynamic array formulas.
* Support for intersect operator.
* Support for Implicit intersection.
* Support for implicit intersection.
* Support for array parameters in functions.
* Better support for using the colon operator with functions.
* 65 new functions
* Better handling of circular references
* 90 new functions
* Faster optimized calculation engine with configurable expression caching.
* Breaking changes: Updated calculation engine, See [Breaking Changes in EPPlus 7](https://github.com/EPPlusSoftware/EPPlus/wiki/Breaking-Changes-in-EPPlus-7) for more information

## Version 6.2.9
* Bug fixes.

## Version 6.2.8
* Bug fixes.

## Version 6.2.7
* Bug fixes.

## Version 6.2.6
* Updated System.Security.Cryptography.Pkcs for security vulnerability in .NET 6 and 7. See https://github.com/dotnet/runtime/issues/87498
* Bug fixes.
Expand Down Expand Up @@ -318,11 +329,15 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html

Version history
7.0.0-preview 2 20230719 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
6.2.6 20230615 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.0-beta 1 20230912 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
6.2.9 20230908 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
6.2.8 20230815 Minor bug fixes.
6.2.7 20230719 Minor bug fixes.
7.0.0-preview 2 20230719 Calculation engine update for array formulas.
6.2.6 20230615 Minor bug fixes.
6.2.5 20230614 Minor bug fixes.
7.0.0-preview 1 20230519 Calculation engine update for array formulas.
6.2.4 20230515 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
7.0.0-preview 1 20230519 Calculation engine update for array formulas.
6.2.4 20230515 Minor bug fixes.
6.2.3 20230502 Minor bug fixes.
6.2.2 20230417 Minor bug fixes.
6.2.1 20230406 Minor bug fixes.
Expand Down

0 comments on commit 20a5129

Please sign in to comment.