Skip to content

Commit 6d13bf1

Browse files
committed
EPPlus version 7.1.3
1 parent 306eb90 commit 6d13bf1

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

appveyor7.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
version: 7.1.2.{build}
1+
version: 7.1.3.{build}
22
branches:
33
only:
44
- develop7
55
configuration: release
66
image: Visual Studio 2022
77
init:
88
- ps: >-
9-
Update-AppveyorBuild -Version "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
9+
Update-AppveyorBuild -Version "7.1.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.1.3.$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.1.2.{build}
17-
file_version: 7.1.2.{build}
16+
assembly_version: 7.1.3.{build}
17+
file_version: 7.1.3.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
21
# Features / Fixed issues - EPPlus 7
32
## Version 7.1.3
43
### Fixed issues
5-
* Dxf styles on tables got corrupt if a style contained an alignment and and border element.
4+
* Dxf styles on tables got corrupt if a style contained an alignment and border element.
5+
* When calculating formulas, you could get a CirculareReferenceException, if a formula referenced a non-existing worksheet.
6+
* Conditional formatting’s with the pivot flag set was incorrectly handled if they had no worksheet address set.
7+
* Clearing data validations on cells, could cause an exception when trying to add new data validations to these cells.
8+
* Conditional formatting icon sets now handles all operators and types appropriately ...
9+
* ExcelRange.Text returned an invalid formatting on formats with "?" in some cases.
10+
* Name indexer on group drawings did not work.
11+
* Data validation lists did not handle the `showDropDown` attribute.
12+
* Loading a workbook with rich text elements with no style element could hang.
13+
* The rich text `Text` property was not decode for restricted characters.
614

715
## Version 7.1.2
816
### Fixed issues

src/EPPlus/EPPlus.csproj

+10-6
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.1.1.0</AssemblyVersion>
5-
<FileVersion>7.1.1.0</FileVersion>
6-
<Version>7.1.1</Version>
4+
<AssemblyVersion>7.1.3.0</AssemblyVersion>
5+
<FileVersion>7.1.3.0</FileVersion>
6+
<Version>7.1.3</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,14 +18,17 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.1.2
21+
EPPlus 7.1.3
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.1.3
30+
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
31+
2932
## Version 7.1.2
3033
* Bug fixes
3134

@@ -36,7 +39,7 @@
3639
* The html export now supports most conditional formattings.
3740
* Updated performance for rich text handling on ranges.
3841
* Improvments in sort order and cell formatting of the ExcelRangeBase.LoadFromCollection method
39-
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
42+
* Bug fixes
4043

4144
## Version 7.0.10
4245
* Bug fixes
@@ -387,7 +390,8 @@
387390
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
388391

389392
Version history
390-
7.1.2 20240423 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
393+
7.1.3 20240528 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
394+
7.1.2 20240423 Minor bug fixes.
391395
7.1.1 20240408 Minor bug fixes.
392396
7.1.0 20240328 Html export of Conditional formatting, Performance RichText, LoadFromCollection Enhancements.
393397
7.0.10 20240311 Minor bug fixes.

0 commit comments

Comments
 (0)