Skip to content

Commit

Permalink
EPPlus version 7.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKallman committed Nov 15, 2024
1 parent 31eb8ca commit 6cafca1
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 11 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.4.2.{build}
version: 7.5.0.{build}
branches:
only:
- develop7
configuration: release
image: Visual Studio 2022
init:
- ps: >-
Update-AppveyorBuild -Version "7.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Update-AppveyorBuild -Version "7.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.4.2.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
Write-Host "7.5.0.$env:appveyor_build_number-$(Get-Date -format yyyyMMdd)-$env:appveyor_repo_branch"
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: 7.4.2.{build}
file_version: 7.4.2.{build}
assembly_version: 7.5.0.{build}
file_version: 7.5.0.{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,4 +1,14 @@
# Features / Fixed issues - EPPlus 7
## Version 7.5.0
### Fixed issues and minor features
* Added signatures to the EPPlus.dll's and the EPPlus Nuget package.
* Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField
* A NullReferenceException was sometimes thrown when saving line charts with droplines.
* Fix for cells with null values and no style id getting incorrect styling.
* Fixed an issue where two VLOOKUPs on the same worksheet intersected the same range. (kolla ev. #1671 för bättre beskrivning, tror det var du som fixade den).
* Added AllowDuplicateColumnNames to ToDataTableOptions. This allows the exported range in the ToDataTable method to have duplicate column names.
* EPPlus encoded CR and TAB characters in the shared string to _0x000D_ and _0x000A_, which was not necessary.
* NullReferenceException thrown in some cases when saving a line chart with droplines

## Version 7.4.2
* Added support the array attribute on table column formulas.
Expand Down
18 changes: 12 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.4.2.0</AssemblyVersion>
<FileVersion>7.4.2.0</FileVersion>
<Version>7.4.2</Version>
<AssemblyVersion>7.5.0.0</AssemblyVersion>
<FileVersion>7.5.0.0</FileVersion>
<Version>7.5.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
<Authors>EPPlus Software AB</Authors>
Expand All @@ -18,16 +18,21 @@
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Copyright>EPPlus Software AB</Copyright>
<PackageReleaseNotes>
EPPlus 7.4.2
EPPlus 7.5.0

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.4.2

## Version 7.5.0
* Added signatures to the EPPlus.dll's and the EPPlus Nuget package.
* Added new properties RepeatItemLabels and InsertBlankRow to ExcelPivotTableField
* Minor features and bug fixes. See https://epplussoftware.com/en/Developers/MinorFeaturesAndIssues

## Version 7.4.2
* Minor features and bug fixes.

## Version 7.4.1
* Updated for vulnerability in System.Text.Json - Microsoft.Extensions.Configuration.Json 8.0.0 -> 8.0.1
Expand Down Expand Up @@ -431,6 +436,7 @@
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html

Version history
7.5.0 20241115 Minor features and bug fixes.
7.4.2 20241028 Minor features and bug fixes.
7.4.1 20241011 Updated System.Text.Json
7.4.0 20241002 Conditional Formatting's in Pivot tables. Linked image files in Pictures. See https://epplussoftware.com/Developers/MinorFeaturesAndIssues
Expand Down

0 comments on commit 6cafca1

Please sign in to comment.