Skip to content

Commit

Permalink
EPPlus version 7.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed May 28, 2024
1 parent 306eb90 commit 6d13bf1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
10 changes: 5 additions & 5 deletions appveyor7.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 7.1.2.{build}
version: 7.1.3.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.1.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.1.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.1.3.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.1.2.{build}
file_version: 7.1.2.{build}
assembly_version: 7.1.3.{build}
file_version: 7.1.3.{build}
nuget:
project_feed: true
before_build:
Expand Down
12 changes: 10 additions & 2 deletions docs/articles/fixedissues.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@

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

## Version 7.1.2
### Fixed issues
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.1.0</AssemblyVersion>
<FileVersion>7.1.1.0</FileVersion>
<Version>7.1.1</Version>
<AssemblyVersion>7.1.3.0</AssemblyVersion>
<FileVersion>7.1.3.0</FileVersion>
<Version>7.1.3</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,14 +18,17 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.1.2
EPPlus 7.1.3

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.3
* Bug fixes - See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.1.2
* Bug fixes

Expand All @@ -36,7 +39,7 @@
* 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
* Bug fixes

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

Version history
7.1.2 20240423 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
7.1.3 20240528 Minor bug fixes. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues.
7.1.2 20240423 Minor bug fixes.
7.1.1 20240408 Minor bug fixes.
7.1.0 20240328 Html export of Conditional formatting, Performance RichText, LoadFromCollection Enhancements.
7.0.10 20240311 Minor bug fixes.
Expand Down

0 comments on commit 6d13bf1

Please sign in to comment.