Skip to content

Commit a4bc409

Browse files
committed
EPPlus version 7.0.0-rc1
1 parent b11ab39 commit a4bc409

File tree

3 files changed

+30
-21
lines changed

3 files changed

+30
-21
lines changed

docs/articles/breakingchanges.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ Misspelled property `ExcelIgnoreError.CalculatedColumm` has been renamed `Calcul
102102
* The expression handling is totally rewritten and now uses reversed polish notation instead of an expression tree. This change affects internal classes only.
103103
* The `CompileResult` class has moved to a new namespace: OfficeOpenXml.FormulaParsing.FormulaExpressions
104104
* Adding defined names referencing addresses will now be added as fixed addresses (i.e $A$1), unless the `allowRelativeAddress` parameter of the `ExcelNamedRangeCollection.Add` method is set to true.
105+
### `ExcelWorksheet.AutofilterAddress` is now obsolete. Use `ExcelWorksheet.Autofilter.Address` instead. `ExcelWorksheet.Autofilter` will now always be set instead of being null if no autofilter was present.
105106
#### ConditionalFormatting
106107
* Updating ConditionalFormatting via the XML DOM will not work as read and write is performed on load/save.
107108
* The base class `ConditionalFormattingRule` and all derived classes no longer contain the Node property.

docs/articles/fixedissues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Features / Fixed issues - EPPlus 6
22

3-
## Version 7.0.0-Beta 1
3+
## Version 7.0.0-Beta rc 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.
1010
* Better handling of circular references
11-
* 90 new functions
11+
* 91 new functions
1212
* Faster optimized calculation engine with configurable expression caching.
1313
* 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
1414
* Conditional Formatting improvements

src/EPPlus/EPPlus.csproj

Lines changed: 27 additions & 19 deletions
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.1</AssemblyVersion>
5-
<FileVersion>7.0.0.1</FileVersion>
6-
<Version>7.0.0-beta1</Version>
4+
<AssemblyVersion>7.0.0.2</AssemblyVersion>
5+
<FileVersion>7.0.0.2</FileVersion>
6+
<Version>7.0.0-rc1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,29 +18,35 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.0.0-Beta 1
21+
EPPlus 7.0.0-RC 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-Beta 1
29+
## Version 7.0.0-RC 1
3030
* Calculation engine update to support array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
31-
* Support for calculating legacy / dynamic array formulas.
32-
* Support for intersect operator.
33-
* Support for implicit intersection.
34-
* Support for array parameters in functions.
35-
* Better support for using the colon operator with functions.
36-
* Better handling of circular references
37-
* 90 new functions
38-
* Faster optimized calculation engine with configurable expression caching.
39-
* 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.
31+
* Support for calculating legacy / dynamic array formulas.
32+
* Support for intersect operator.
33+
* Support for implicit intersection.
34+
* Support for array parameters in functions.
35+
* Better support for using the colon operator with functions.
36+
* Better handling of circular references
37+
* 90 new functions
38+
* Faster optimized calculation engine with configurable expression caching.
39+
* 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.
4040
* Conditional Formatting improvements
41-
* Improved performance, xml is now read and written on load and save.
42-
* Cross worksheet support formula support.
43-
* Extended styling options for color scales, data bars and icon sets.
41+
* Improved performance, xml is now read and written on load and save.
42+
* Cross worksheet support formula support.
43+
* Extended styling options for color scales, data bars and icon sets.
44+
45+
## Version 7.0.0-rc1
46+
* Bug fixes.
47+
48+
## Version 6.2.10
49+
* Bug fixes.
4450

4551
## Version 6.2.9
4652
* Bug fixes.
@@ -333,8 +339,10 @@
333339
A list of fixed issues can be found here https://epplussoftware.com/docs/5.8/articles/fixedissues.html
334340

335341
Version history
336-
7.0.0-beta 1 20230912 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
337-
6.2.9 20230908 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
342+
7.0.0-rc 1 20231002 Calculation engine update for array formulas. https://github.com/EPPlusSoftware/EPPlus/wiki/EPPlus-7-Preview
343+
6.2.10 20231002 Minor bug fixes.See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
344+
7.0.0-beta 1 20230912 Calculation engine update for array formulas.
345+
6.2.9 20230908 Minor bug fixes.
338346
6.2.8 20230815 Minor bug fixes.
339347
6.2.7 20230719 Minor bug fixes.
340348
7.0.0-preview 2 20230719 Calculation engine update for array formulas.

0 commit comments

Comments
 (0)