Skip to content

Commit 0a71242

Browse files
committed
EPPlus version 7.2.2
1 parent 69a285d commit 0a71242

File tree

3 files changed

+32
-14
lines changed

3 files changed

+32
-14
lines changed

appveyor7.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.2.1.{build}
1+
version: 7.2.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.2.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.2.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.2.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.2.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1212
dotnet_csproj:
1313
patch: true
1414
file: '**\*.csproj'
1515
version: '{version}'
16-
assembly_version: 7.2.1.{build}
17-
file_version: 7.2.1.{build}
16+
assembly_version: 7.2.2.{build}
17+
file_version: 7.2.2.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+18-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
# Features / Fixed issues - EPPlus 7
22
## Version 7.2.2
3-
### Fixed issues
4-
* Worksheet references in formulas preceeded by `-` now work as expected.
5-
* Theme templates now appropriately apply theme colours to charts.
6-
* LoadFromCollections with CamelCased attributes did not apply HeaderParsingTypes.CamelCaseToSpace in some cases
3+
### Fixed issues and minor features
4+
* Worksheet references in formulas proceeded by `-` now work as expected.
5+
* Theme templates now appropriately apply theme colors to charts.
6+
* LoadFromCollections with CamelCased attributes did not apply HeaderParsingTypes.CamelCaseToSpace in some cases.
7+
* Refreshing a pivot table could sometimes incorrectly clear the selected item in a page field.
8+
* The pivot table cache HashSet did not match numeric values, if they were of different data types (for example int and double).
9+
* The 'ExcelRangeBase.Text' property did not handle the General format if additional formatting was added.
10+
* Pivot tables fail to save when having dates with milliseconds and date grouping on a field.
11+
* Calculated fields in Pivot tables did not always calculate depending fields, causing the calculation to throw an unhandled exception.
12+
* Having empty rPr-elements (rich text properties) in a shared string item, caused the reading of shared string to be ignored and get the shared string indexes to get out of sync.
13+
* Selected items in pivot table slicers was not always retained, it the field has a page field with a single selected item.
14+
* Add new functions to calculate multiple pivot tables. Using these methods will make sure any shared pivot cache is only refreshed once.
15+
* ExcelWorkbook.CalculateAllPivotTables(refresh)
16+
* ExcelPivotTableCollection.Calculate(refresh)
17+
* New functions supported in formula calculations.
18+
* LINEST
19+
* LOGEST
20+
* TREND
721

822
## Version 7.2.1
923
### Fixed issues and minor features

src/EPPlus/EPPlus.csproj

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.2.1.0</AssemblyVersion>
5-
<FileVersion>7.2.1.0</FileVersion>
6-
<Version>7.2.1</Version>
4+
<AssemblyVersion>7.2.2.0</AssemblyVersion>
5+
<FileVersion>7.2.2.0</FileVersion>
6+
<Version>7.2.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,16 +18,19 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.2.1
21+
EPPlus 7.2.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.2.2
30+
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31+
2932
## Version 7.2.1
30-
* Bug fixes see https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
33+
* Bug fixes
3134

3235
## Version 7.2.0
3336
* Pivot table calculation
@@ -405,6 +408,7 @@
405408
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
406409

407410
Version history
411+
7.2.2 20240724 Minor features and bug fixes.
408412
7.2.1 20240702 Minor bug fixes.
409413
7.2.0 20240618 Pivot table calculation. Import/Export of fixed width text files. Improvment export of Conditional formatting. Copy of drawings. Transpose functionality.
410414
7.1.3 20240528 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.

0 commit comments

Comments
 (0)