Skip to content

Commit c0c5c25

Browse files
committed
EPPlus version 7.1.1
1 parent 93c5e35 commit c0c5c25

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

appveyor7.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 7.1.0.{build}
1+
version: 7.1.1.{build}
22
branches:
33
only:
44
- develop7
@@ -8,13 +8,13 @@ init:
88
- ps: >-
99
Update-AppveyorBuild -Version "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
1010
11-
Write-Host "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
11+
Write-Host "7.1.1.$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.0.{build}
17-
file_version: 7.1.0.{build}
16+
assembly_version: 7.1.1.{build}
17+
file_version: 7.1.1.{build}
1818
nuget:
1919
project_feed: true
2020
before_build:

docs/articles/fixedissues.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11

22
# Features / Fixed issues - EPPlus 7
3+
## Version 7.1.1
4+
### Minor Features and fixed issues
5+
* Added properties Rotation, HorizontalFilp and VerticalFlip to ExcelShapeBase and ExcelPicture
6+
* Fixed an issue where RichText wasn't set properly on a multicell range.
7+
* Escape character before an apostrophe in date formats are no longer removed by EPPlus
8+
* The GenericImageReader failed to read some jpeg/exif images.
9+
* Setting the TextBody.Rotation on Chart DataLabel's caused the workbook to become corrupt in some cases.
10+
* Added SetColor() method to ExcelDxfColor with int parameters as in ExcelColor
11+
* Fixed issue applying PatternFill without applying BackgroundFill now works as expected
12+
313
## Version 7.1
414
### Features
515
* Improved HTMLExport

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.0.0</AssemblyVersion>
5-
<FileVersion>7.1.0.0</FileVersion>
6-
<Version>7.1.0</Version>
4+
<AssemblyVersion>7.1.1.0</AssemblyVersion>
5+
<FileVersion>7.1.1.0</FileVersion>
6+
<Version>7.1.1</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,22 +18,25 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.1.0
21+
EPPlus 7.1.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.1.1
30+
* Bug fixes
31+
2932
## Version 7.1.0
3033
* The html export now supports most conditional formattings.
3134
* Updated performance for rich text handling on ranges.
3235
* Improvments in sort order and cell formatting of the ExcelRangeBase.LoadFromCollection method
3336
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues
3437

3538
## Version 7.0.10
36-
* Bug fixes
39+
* Bug fixes
3740

3841
## Version 7.0.9
3942
* Bug fixes
@@ -381,8 +384,9 @@
381384
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
382385

383386
Version history
387+
7.1.1 20240408 Minor bug fixes.
384388
7.1.0 20240328 Html export of Conditional formatting, Performance RichText, LoadFromCollection Enhancements. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
385-
7.0.10 20240311 Minor bug fixes.
389+
7.0.10 20240311 Minor bug fixes.
386390
7.0.9 20240215 Minor bug fixes.
387391
7.0.8 20240124 Minor bug fixes.
388392
7.0.7 20240119 Minor bug fixes.

0 commit comments

Comments
 (0)