Skip to content

Commit 20a5129

Browse files
committed
EPPlus version 7.0.0-beta1
1 parent 0cbac12 commit 20a5129

File tree

2 files changed

+30
-13
lines changed

2 files changed

+30
-13
lines changed

docs/articles/fixedissues.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Features / Fixed issues - EPPlus 6
22

3-
## Version 7.0.0-Preview 2
3+
## Version 7.0.0-Beta 1
44
* Calculation engine update to to support array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
55
* Support for calculating legacy / dynamic array formulas.
66
* Support for intersect operator.
77
* Support for implicit intersection.
88
* Support for array parameters in functions.
99
* Better support for using the colon operator with functions.
10-
* 65 new functions
10+
* Better handling of circular references
11+
* 90 new functions
12+
* Faster optimized calculation engine with configurable expression caching.
1113
* 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
1214

1315
## Version 6.2.4

src/EPPlus/EPPlus.csproj

+26-11
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.0.0</AssemblyVersion>
5-
<FileVersion>7.0.0.0</FileVersion>
6-
<Version>7.0.0-preview2</Version>
4+
<AssemblyVersion>7.0.0.1</AssemblyVersion>
5+
<FileVersion>7.0.0.1</FileVersion>
6+
<Version>7.0.0-Beta1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,24 +18,35 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.0.0-Preview 2
21+
EPPlus 7.0.0-Beta 1
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.0-Preview 2
29+
## Version 7.0.0-Beta 1
3030
* Calculation engine update to support array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
3131
* Support for calculating legacy / dynamic array formulas.
3232
* Support for intersect operator.
33-
* Support for Implicit intersection.
33+
* Support for implicit intersection.
3434
* Support for array parameters in functions.
3535
* Better support for using the colon operator with functions.
36-
* 65 new functions
36+
* Better handling of circular references
37+
* 90 new functions
38+
* Faster optimized calculation engine with configurable expression caching.
3739
* 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
3840

41+
## Version 6.2.9
42+
* Bug fixes.
43+
44+
## Version 6.2.8
45+
* Bug fixes.
46+
47+
## Version 6.2.7
48+
* Bug fixes.
49+
3950
## Version 6.2.6
4051
* Updated System.Security.Cryptography.Pkcs for security vulnerability in .NET 6 and 7. See https://github.com/dotnet/runtime/issues/87498
4152
* Bug fixes.
@@ -318,11 +329,15 @@
318329
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
319330

320331
Version history
321-
7.0.0-preview 2 20230719 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
322-
6.2.6 20230615 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
332+
7.0.0-beta 1 20230912 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
333+
6.2.9 20230908 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
334+
6.2.8 20230815 Minor bug fixes.
335+
6.2.7 20230719 Minor bug fixes.
336+
7.0.0-preview 2 20230719 Calculation engine update for array formulas.
337+
6.2.6 20230615 Minor bug fixes.
323338
6.2.5 20230614 Minor bug fixes.
324-
7.0.0-preview 1 20230519 Calculation engine update for array formulas.
325-
6.2.4 20230515 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
339+
7.0.0-preview 1 20230519 Calculation engine update for array formulas.
340+
6.2.4 20230515 Minor bug fixes.
326341
6.2.3 20230502 Minor bug fixes.
327342
6.2.2 20230417 Minor bug fixes.
328343
6.2.1 20230406 Minor bug fixes.

0 commit comments

Comments
 (0)