Skip to content

Commit 52a6330

Browse files
committed
Merge branch 'release/epplus7.7.1' into develop7
2 parents aec6d83 + e60ec21 commit 52a6330

3 files changed

Lines changed: 20 additions & 9 deletions

File tree

appveyor7.yml

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

docs/articles/fixedissues.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.7.1
3+
* Copying a cell after deleting and adding a comment sometimes caused an exception
4+
* The LET function did not handle multiple table style addresses as arguments.
5+
* Setting the Display attribute without setting the Order attribute in LoadFromCollection caused an Exception.
6+
* Setting TabColor to Color.Empty now removes the TabColor.
7+
* ExcelParagraph.Text throw an ArgumentOutOfRangeException if the text was empty.
8+
29
## Version 7.7.0
310
* Reverted System.* and Microsoft.* references to 8.0.x for all target frameworks except .NET 9.
411
* LoadFromArray and LoadFromDataTable of the ExcelRangeBase class did not clear existing formulas before populating the range.

src/EPPlus/EPPlus.csproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net9.0;net8.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
4-
<AssemblyVersion>7.7.0.0</AssemblyVersion>
5-
<FileVersion>7.7.0.0</FileVersion>
6-
<Version>7.7.0</Version>
4+
<AssemblyVersion>7.7.1.0</AssemblyVersion>
5+
<FileVersion>7.7.1.0</FileVersion>
6+
<Version>7.7.1</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.7.0
21+
EPPlus 7.7.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.7.1
30+
* Minor bug fixes.
31+
2932
## Version 7.7.0
3033
* Fixed referenced packages versioning.
3134
* Minor bug fixes.
@@ -458,6 +461,7 @@
458461
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
459462

460463
Version history
464+
7.7.1 20250415 Minor bug fixes.
461465
7.7.0 20250317 Fixed referenced packages versioning. Minor bug fixes.
462466
7.6.1 20250304 Minor bug fixes.
463467
7.6.0 20250206 Updated target frameworks. Minor features and bug fixes.

0 commit comments

Comments
 (0)