Skip to content

Commit

Permalink
EPPlus version 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Apr 8, 2024
1 parent 93c5e35 commit c0c5c25
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
8 changes: 4 additions & 4 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 7.1.0.{build}
version: 7.1.1.{build}
branches:
only:
- develop7
Expand All @@ -8,13 +8,13 @@ init:
- ps: >-
Update-AppveyorBuild -Version "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.1.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.1.1.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.1.0.{build}
file_version: 7.1.0.{build}
assembly_version: 7.1.1.{build}
file_version: 7.1.1.{build}
nuget:
project_feed: true
before_build:
Expand Down
10 changes: 10 additions & 0 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@

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

## Version 7.1
### Features
* Improved HTMLExport
Expand Down
16 changes: 10 additions & 6 deletions src/EPPlus/EPPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>7.1.0.0</AssemblyVersion>
<FileVersion>7.1.0.0</FileVersion>
<Version>7.1.0</Version>
<AssemblyVersion>7.1.1.0</AssemblyVersion>
<FileVersion>7.1.1.0</FileVersion>
<Version>7.1.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,22 +18,25 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.1.0
EPPlus 7.1.1

IMPORTANT NOTICE!
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
EPPlus will still have the source available, but for non Polyform NC compliant projects, EPPlus will provide a commercial license.
Commercial licenses can be purchased from https://epplussoftware.com
This applies to EPPlus version 5 and later. Earlier versions are still licensed LGPL.

## Version 7.1.1
* Bug fixes

## Version 7.1.0
* The html export now supports most conditional formattings.
* Updated performance for rich text handling on ranges.
* Improvments in sort order and cell formatting of the ExcelRangeBase.LoadFromCollection method
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.0.10
* Bug fixes
* Bug fixes

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

Version history
7.1.1 20240408 Minor bug fixes.
7.1.0 20240328 Html export of Conditional formatting, Performance RichText, LoadFromCollection Enhancements. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
7.0.10 20240311 Minor bug fixes.
7.0.10 20240311 Minor bug fixes.
7.0.9 20240215 Minor bug fixes.
7.0.8 20240124 Minor bug fixes.
7.0.7 20240119 Minor bug fixes.
Expand Down

0 comments on commit c0c5c25

Please sign in to comment.