Skip to content

Commit 3976053

Browse files
committed
EPPlus version 7.7.2
1 parent 52a6330 commit 3976053

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

appveyor7.yml

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

docs/articles/fixedissues.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Features / Fixed issues - EPPlus 7
2+
## Version 7.7.2
3+
* Sorting a range with threaded comments, remove and the add a threaded comment sometimes throws an exception.
4+
* Added custom number formats where the formatId is not a built-in format.
5+
* Using LoadFromCollection with transpose=true and a table style with one line in the output caused a corrupt workbook.
6+
27
## Version 7.7.1
38
* Copying a cell after deleting and adding a comment sometimes caused an exception
49
* The LET function did not handle multiple table style addresses as arguments.

src/EPPlus/EPPlus.csproj

Lines changed: 5 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.1.0</AssemblyVersion>
5-
<FileVersion>7.7.1.0</FileVersion>
6-
<Version>7.7.1</Version>
4+
<AssemblyVersion>7.7.2.0</AssemblyVersion>
5+
<FileVersion>7.7.2.0</FileVersion>
6+
<Version>7.7.2</Version>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageProjectUrl>https://epplussoftware.com</PackageProjectUrl>
99
<Authors>EPPlus Software AB</Authors>
@@ -18,7 +18,7 @@
1818
<PackageReadmeFile>readme.md</PackageReadmeFile>
1919
<Copyright>EPPlus Software AB</Copyright>
2020
<PackageReleaseNotes>
21-
EPPlus 7.7.1
21+
EPPlus 7.7.2
2222

2323
IMPORTANT NOTICE!
2424
From version 5 EPPlus changes the license model using a dual license, Polyform Non Commercial / Commercial license.
@@ -461,6 +461,7 @@
461461
A list of fixed issues can be found here https://epplussoftware.com/docs/7.0/articles/fixedissues.html
462462

463463
Version history
464+
7.7.2 20250514 Minor bug fixes.
464465
7.7.1 20250415 Minor bug fixes.
465466
7.7.0 20250317 Fixed referenced packages versioning. Minor bug fixes.
466467
7.6.1 20250304 Minor bug fixes.

0 commit comments

Comments
 (0)